hello, all!

Is it possible to specify some additional properties, that should be used 
for creation the connection in OJB?

For example, I need to create connection something like this:

// Load the JDBC-ODBC bridge driver
       Class.forName(sun.jdbc.odbc.JdbcOdbcDriver) ;
 
       // setup the properties 
       java.util.Properties prop = new java.util.Properties();
       prop.put("charSet", "Big5");
       prop.put("user", username);
       prop.put("password", password);
 
       // Connect to the database
       con = DriverManager.getConnection(url, prop);

How can I specify in repository.xml some additional properties (like 
charSet in prop object) for connection?
Or it is impossible?

Best Regards,
Alexey Kakunin
Project Manager
PIKOS GmbH
Post Str. 24
53111 Bonn

Tel: +49 30 43 72 92-30
Fax: +49 30 43 72 92-30

Reply via email to