Exemplo n.º 1
0
 public Gageas.Wrapper.SQLite3.SQLite3DB Get()
 {
     if (pooledConnection != null)
     {
         return(pooledConnection);
     }
     pooledConnection = Controller.GetDBConnection();
     return(pooledConnection);
 }
Exemplo n.º 2
0
 public void Release()
 {
     pooledConnection.Dispose();
     pooledConnection = null;
 }