Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. st.executeUpdate("INSERT INTO gameservers" + "VALUES (null, null, null, "+macAddress+", null)");
  2.  
  3. CREATE TABLE IF NOT EXISTS `gameservers` (
  4. `server_id` int(11) NOT NULL default '0',
  5. `hexid` varchar(50) NOT NULL default '',
  6. `host` varchar(50) NOT NULL default '',
  7. `macAddress` varchar(50) NOT NULL default '',
  8. `firstTime` int(1) NOT NULL default '0',
  9. PRIMARY KEY (`server_id`)
  10. ) ;
  11.  
  12. "INSERT INTO gameservers " + "VALUES (null, null, null, '"+macAddress+"', null)"
  13.  
  14. "VALUES (null, null, null, '"+macAddress+"', null)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement