Lines Matching refs:_aCon
63 public MySQLThread(Connection _aCon, String _sSQL) in MySQLThread() argument
65 m_aCon = _aCon; in MySQLThread()
104 …public void SQLinsertValues(Connection _aCon, String _sTableName, String value_names, String value… in SQLinsertValues() argument
106 if (_aCon == null) in SQLinsertValues()
121 ExecSQL(_aCon, aInsertStr.toString() ); in SQLinsertValues()
124 public void SQLupdateValue(Connection _aCon, String _sTableName, String _sSet, String _sWhere) in SQLupdateValue() argument
126 if (_aCon == null) in SQLupdateValue()
141 ExecSQL( _aCon, aUpdateStr.toString() ); in SQLupdateValue()
219 protected synchronized void ExecSQL(Connection _aCon, String _sSQL) in ExecSQL() argument
221 MySQLThread aSQLThread = new MySQLThread(_aCon, _sSQL); in ExecSQL()
247 public int QueryIntFromSQL(Connection _aCon, String _sSQL, String _sColumnName) in QueryIntFromSQL() argument
256 oStmt = _aCon.createStatement(); in QueryIntFromSQL()