我已经建立了一个数据库连接来从代码中的数据中获取数据,现在我需要保持这个数据库实例是全局的,并且需要在项目的其他部分中使用。
请指导我。
我有以下代码
try
{
// load the DB2 Driver
Class.forName("com.ibm.db2.jcc.DB2Driver");
// establish a connection to DB2
Connection db2Conn = DriverManager.getConnection
(dbUrl,"wcsadm",dbPass);
// use a statement to gather data from the database
Statement st = db2Conn.createStatement();
String myQuery=null;
String insQuery=null;
myQuery = "my query"
// execute the query
ResultSet resultSet = st.executeQuery(myQuery);
// cycle through the resulSet and display what was grabbed
while (resultSet.next())
{
//do something
}
resultSet.close();
st.close();
db2Conn.close();
}