Advertisement
Guest User

Untitled

a guest
Mar 7th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. cnx.connect(user:user, password:password, port:port, db:db, host:host).chain((nothing) {
  2. log.debug("got connection");
  3. return cnx.useDatabase(db);
  4. }).chain((dummy) {
  5. return cnx.query("select * from tablename");
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement