summaryrefslogtreecommitdiff
path: root/sqlplain/tests/sqlplain_ex.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlplain/tests/sqlplain_ex.py')
-rw-r--r--sqlplain/tests/sqlplain_ex.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/sqlplain/tests/sqlplain_ex.py b/sqlplain/tests/sqlplain_ex.py
deleted file mode 100644
index ea76b0e..0000000
--- a/sqlplain/tests/sqlplain_ex.py
+++ /dev/null
@@ -1,24 +0,0 @@
-from sqlplain import DB
-
-def test(autocommit):
- db = DB('mssql://python:p1tone@192.168.0.129/srsdevbak', autocommit)
- print db
- print db.execute('select * from client')
- print db.execute("update client set client='pippo' where 1=2")
-
-
- db = DB('postgres://python:p1tone@localhost/rcare', autocommit)
- print db
- print db.execute('select * from customer')
- print db.execute("update customer set client_id='pippo' where 1=2")
-
- db = DB('sqlite:///:memory:', autocommit)
- print db
- print db._raw_execute('create table prova (i integer)', (), None)
- print db.execute("insert into prova values (1)")
- print db.execute("select * from prova")
-
-if __name__ == '__main__':
- test(autocommit=False)
- test(autocommit=True)
-