Guest User

Untitled

a guest
May 31st, 2018
150
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 Derby:
  2. int.jdbc.driver=org.apache.derby.jdbc.EmbeddedDriver
  3. int.jdbc.url=jdbc:derby:derby-home/test;create=true
  4. int.jdbc.user=app
  5. int.jdbc.password=
  6. int.drop.script=classpath:/schema-drop-derby.sql
  7. int.schema.script=classpath:/schema-derby.sql
  8. int.insert.query=insert into item (bus_key,name,status) values (:payload.key,:payload.name, 2)
  9. int.poll.query=select * from item where bus_key=:key and status=2
  10. int.keys.query=select distinct bus_key from item where status=2
  11. int.scheduler.pool.size=1
Add Comment
Please, Sign In to add comment