Lines Matching refs:Connection
26 import java.sql.Connection;
37 private Connection m_aConnection = null;
41 public Connection getConnection() in getConnection()
61 Connection m_aCon = null;
63 public MySQLThread(Connection _aCon, String _sSQL) in MySQLThread()
104 …public void SQLinsertValues(Connection _aCon, String _sTableName, String value_names, String value… in SQLinsertValues()
124 public void SQLupdateValue(Connection _aCon, String _sTableName, String _sSet, String _sWhere) in SQLupdateValue()
180 public static Connection getMySQLConnection() throws SQLException in getMySQLConnection()
188 Connection mysql = DriverManager.getConnection(sConnection, m_sDBUser, m_sDBPasswd); in getMySQLConnection()
219 protected synchronized void ExecSQL(Connection _aCon, String _sSQL) in ExecSQL()
247 public int QueryIntFromSQL(Connection _aCon, String _sSQL, String _sColumnName) in QueryIntFromSQL()
251 Connection oCon = null; in QueryIntFromSQL()