fywf555 commented on issue #330: URL: https://github.com/apache/camel-kafka-connector-examples/issues/330#issuecomment-1063753943
it is worked and use the default database;  ``` name=CamelSqlSourceConnector connector.class=org.apache.camel.kafkaconnector.sql.CamelSqlSourceConnector key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=org.apache.kafka.connect.storage.StringConverter topics=mytopic camel.component.sql.dataSource.user=postgres camel.component.sql.dataSource.password=ab.123456 camel.component.sql.dataSource.serverName=10.14.16.4:5432 camel.component.sql.dataSource=#class:org.postgresql.ds.PGSimpleDataSource camel.source.path.query=select * from account ```  but i want to use another database,i try ``` name=CamelSqlSourceConnector connector.class=org.apache.camel.kafkaconnector.sql.CamelSqlSourceConnector key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=org.apache.kafka.connect.storage.StringConverter topics=mytopic camel.component.sql.dataSource.user=postgres camel.component.sql.dataSource.password=ab.123456 camel.component.sql.dataSource.serverName=10.14.16.4:5432/test camel.component.sql.dataSource=#class:org.postgresql.ds.PGSimpleDataSource camel.source.path.query=select * from invoice ``` and failed  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org