Пример #1
0
 private void close()
 {
     if (this.client != null && this.statement != null && !this.client.IsClosed())
     {
         this.client.Execute(c => c.statement_close(this.statement));
         this.client    = null;
         this.statement = null;
     }
 }
Пример #2
0
 private void close()
 {
     if (this.client != null && this.connection != null && !this.client.IsClosed())
     {
         this.client.Execute(c => c.closeConnection(this.connection));
         this.client     = null;
         this.connection = null;
     }
 }
Пример #3
0
 internal DBAbstractStatement(AbstractJDBCClient client, RStatement statement)
 {
     this.client    = client;
     this.statement = statement;
 }
Пример #4
0
 internal DBPreparedStatement(AbstractJDBCClient client, RStatement statement)
     : base(client, statement)
 {
 }
Пример #5
0
 internal DBConnection(AbstractJDBCClient client, RConnection connection)
 {
     this.client     = client;
     this.connection = connection;
 }