Re: custom condition check frequently

2011-06-02 Thread Alan Camillo
I agree with Hadrian! You can use the same logic with camel-quartz to start your process. In the same way you implement today. After that you can use one of many implementations to connect in your data source. I really like camel-mybatis but you can use one of those: camel-jdbc camel-sql camel-jpa

Re: custom condition check frequently

2011-06-02 Thread Hadrian Zbarcea
Camel has a quartz component [1] that you can use in a very similar way (if I understand correctly what you meant). You obviously need a trigger to start processing, camel-quartz can provide that. Are there any other possible triggers for your data quality validation task? I hope this helps, H

Re: custom condition check frequently

2011-06-02 Thread fachhoch
some of my tables are not mapped as entities and this table I have to query is not mapped I don't want to map it, I want camel to call my predicate if the predicate returns true call some processor , and check the predicate every 5 minutes , -- View this message in context: http://camel.4

Re: custom condition check frequently

2011-06-02 Thread Achim Nierbeck
I suggest you take a look at the jpa component. With that and a corresponding Entity object this can be achieved. If you want to check for certain values to be set of the entity you can define a named query on it. Am 02.06.2011 19:03, schrieb fachhoch: I want to check a table data in my databa