documentation for jdbc idempotent repository - use with spring DSL
------------------------------------------------------------------
Key: CAMEL-4151
URL: https://issues.apache.org/jira/browse/CAMEL-4151
Project: Camel
Issue Type: Improvement
Components: camel-sql
Affects Versions: 2.7.1
Environment: camels on win2k3, mysql(5.5.8) on win2k3
Reporter: Julian Cable
Assignee: Christian Müller
Fix For: 2.8.0
When running several camels with an idempotent repository (based on
jdbc to mysql) I haven't found any documentation for the table-definition or
for changing parameters (like table-name).
Getting through the sources, I tried out following definition on mysql that
works for me:
CREATE TABLE IF NOT EXISTS `camel_messageprocessed` (
`messageId` varchar(255) NOT NULL,
`processorName` varchar(255) NOT NULL,
PRIMARY KEY (`messageId`)
)
Please check this back.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira