Home | History | Annotate | Download | only in db

Lines Matching defs:fConnection

56     private Connection fConnection;
795 if (this.fConnection != null || !DB_CONNECTION)
874 this.fConnection = DriverManager.getConnection("jdbc:" + this.fDBType + ":" + url, info); //$NON-NLS-1$ //$NON-NLS-2$
881 this.fConnection = DriverManager.getConnection("jdbc:" + this.fDBType + ":" + url, info); //$NON-NLS-1$ //$NON-NLS-2$
888 this.fConnection.setAutoCommit(false);
889 this.fSQL = new SQL_Results(this.fConnection);
890 this.fConnection.commit();
911 if (this.fConnection != null) {
913 this.fConnection.commit();
918 this.fConnection.close();
922 this.fConnection = null;