请教各位老大在如下的连接池里怎么指定数据库?
//Weblogic.codeset=GBK
javax.sql.DataSource myDataSource = null;
Context myContext = new InitialContext();
myDataSource = (javax.sql.DataSource)myContext.lookup("ms95522DataSource");
//Connection myConnection = myDriver.connect(driverURL,myProperties);
Connection myConnection = myDataSource.getConnection();
Statement stmt=myConnection.createStatement();