Guest User

Untitled

a guest
Jan 19th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. CREATE TABLE shelf (
  2. bookid sequence,
  3. title character varying(200),
  4. author character varying(200),
  5. publisher character varying(200),
  6. isbn character varying(200),
  7. genre character varying(200)
  8. );
  9.  
  10. QSqlQuery que;
  11. que.exec("insert into shelf(title) values('blah') returning bookid;");
Add Comment
Please, Sign In to add comment