Ejemplo n.º 1
0
 // open database and set status -- first time only
 bool Open(PostgresConnect dbhandle)
 {
     _dbhandle = dbhandle;
     _connectstack.Push(new OpenState());
     SetError(SpiReturn.OK, "");
     IsOpen = CheckOk();
     return(CheckOk());
 }
Ejemplo n.º 2
0
        //-------------------------------------------------------------------------
        // Create a new instance of PG connection and interop
        public static PostgresConnect Create(IExecuteGateway gateway, PostgresDatabase database)
        {
            var pgd = new PostgresConnect()
            {
                _gateway  = gateway,
                _database = database,
            };

            // the initial functions; more will be added, to mirror the catalog
            pgd.AddFunctions();
            return(pgd);
        }