How do I get a trace log for the JDBC-ODBC-Bridge client?

Generate a client trace log by using the standard Driver Manager methods:

DriverManager.setLogStream(java.io.PrintStream(java.io.PrintStream out))

–Or–

DriverManager(java.io.PrintWriter out)

which direct tracing to the specified output.

It's also possible to generate tracing to the standard output (Java console) by adding:

:trace=on

to the Easysoft JDBC URL.

For multi-threaded applications and applets, add:

:multi=on

so that each trace line includes information about the thread that produced the line. For example:

jdbc:easysoft://host/dsn:trace=on:multi=on