Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. query = new SQLQuery("CREATE TABLE IF NOT EXISTS balutabla ("
  2. + "pina VARCHAR(255),"
  3. + "fasz VARCHAR(255),"
  4. + "csocs VARCHAR(255)"
  5. + ")", sql.getConnection());
  6. try {
  7. query.getStatement().execute();
  8. } catch (SQLException e) {
  9. e.printStackTrace();
  10. }
  11. query.closeAll();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement