예제 #1
0
파일: test_pg.py 프로젝트: jcsoo/orm
 def testConnectPool(self):
    p = connect_pool(0,1,database='hello')
    c = p.getconn()
    self.doTestConnection(c)
    p.putconn(c)
예제 #2
0
파일: test_pg.py 프로젝트: jcsoo/orm
 def testConnectPoolURL(self):
    p = connect_pool(0,1,url='postgres://localhost/hello')
    c = p.getconn()
    self.doTestConnection(c)
    p.putconn(c)
예제 #3
0
파일: test_db.py 프로젝트: jcsoo/orm
 def setUp(self):
    self.pool = connect_pool(0,1,database='hello')
    self.db = DB(pool=self.pool)