Guest User

Untitled

a guest
May 31st, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. # Placeholders for MySQL:
  2. int.jdbc.driver=com.mysql.jdbc.Driver
  3. int.jdbc.url=jdbc:mysql://localhost/test
  4. int.jdbc.user=test
  5. int.jdbc.password=test
  6. int.drop.script=classpath:/schema-drop-mysql.sql
  7. int.schema.script=classpath:/schema-mysql.sql
  8. int.insert.query=insert into item (bus_key,name,status) values (:payload.key, :payload.name, 2)
  9. int.poll.query=select id,name,status from item where bus_key=:key and status=2 limit 3
  10. int.keys.query=select distinct bus_key from item where status=2
  11. int.scheduler.pool.size=10
Add Comment
Please, Sign In to add comment