Changeset 813

Show
Ignore:
Timestamp:
03/08/07 22:50:40 (1 year ago)
Author:
mfenniak
Message:

add transaction test to test mod

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pg8000/trunk/pg8000-test.py

    r812 r813  
    88#db = pg8000.Connection(host='joy.fenniak.net', user='Mathieu Fenniak', database="software", password="hello", socket_timeout=5) 
    99db = pg8000.Connection(host='localhost', user='mfenniak') 
     10 
     11db.begin() 
    1012 
    1113db.execute("DROP TABLE t1") 
     
    8688print "Type checks complete." 
    8789 
     90db.commit() 
     91