Data Sink
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2008
02:27 PM
01-10-2008
02:27 PM
Data Sink
I thougt I could use Data sink for a small change in my Database before executing a test step, so I tryed 'JDBC' connect.
Maybe I should better use a groovy skript, but anyway...
Driver: oracle.jdbc.driver.OracleDriver
Connection String: jdbc:oracle:thin:@127.0.0.1:1521:TEST
doesn't work.
(Error: java.sql.SQLException: Invalid arguments in call)
How can I set username and password for this connection?
Maybe I should better use a groovy skript, but anyway...
Driver: oracle.jdbc.driver.OracleDriver
Connection String: jdbc:oracle:thin:@127.0.0.1:1521:TEST
doesn't work.
(Error: java.sql.SQLException: Invalid arguments in call)
How can I set username and password for this connection?
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2008
03:14 AM
01-11-2008
03:14 AM
Hi!
the general format for the oracle connection string is
jdbc:oracle::@
so you should be able to specify the username/password as follows
jdbc:oracle:thin:username/password@127.0.0.1:1521:TEST
Hope this helps!
regards,
/Ole
eviware.com
the general format for the oracle connection string is
jdbc:oracle:
so you should be able to specify the username/password as follows
jdbc:oracle:thin:username/password@127.0.0.1:1521:TEST
Hope this helps!
regards,
/Ole
eviware.com
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2008
06:45 AM
01-11-2008
06:45 AM
Works perfect.
Many thanks!
Many thanks!

