| SDataSource for using javax.sql.DataSource.
If you are using Java 1.3 or earlier just remove this class from the distribution,
it is not needed.
Context ctx = new InitialContext();
DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/TestDB");
SDataSource sds = new SDataSourceJavaX(ds);
SConnection.attach(sds, "MyCon");
|