mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-10 19:00:25 -04:00
e7aaeb2852
can handle *args or a list instance for positional, **kwargs or a dict instance for named args, or a list of list or dicts to invoke executemany()
57 lines
2.5 KiB
Python
57 lines
2.5 KiB
Python
|
|
import testbase
|
|
import unittest, sys, datetime
|
|
import tables
|
|
db = testbase.db
|
|
from sqlalchemy import *
|
|
|
|
|
|
class ExecuteTest(testbase.PersistTest):
|
|
def setUpAll(self):
|
|
global users, metadata
|
|
metadata = BoundMetaData(testbase.db)
|
|
users = Table('users', metadata,
|
|
Column('user_id', INT, primary_key = True),
|
|
Column('user_name', VARCHAR(20)),
|
|
mysql_engine='InnoDB'
|
|
)
|
|
metadata.create_all()
|
|
|
|
def tearDown(self):
|
|
testbase.db.connect().execute(users.delete())
|
|
def tearDownAll(self):
|
|
metadata.drop_all()
|
|
|
|
@testbase.supported('sqlite')
|
|
def test_raw_qmark(self):
|
|
for conn in (testbase.db, testbase.db.connect()):
|
|
conn.execute("insert into users (user_id, user_name) values (?, ?)", [1,"jack"])
|
|
conn.execute("insert into users (user_id, user_name) values (?, ?)", [2,"ed"], [3,"horse"])
|
|
conn.execute("insert into users (user_id, user_name) values (?, ?)", 4, 'sally')
|
|
res = conn.execute("select * from users")
|
|
assert res.fetchall() == [(1, "jack"), (2, "ed"), (3, "horse"), (4, 'sally')]
|
|
conn.execute("delete from users")
|
|
|
|
@testbase.supported('mysql')
|
|
def test_raw_sprintf(self):
|
|
for conn in (testbase.db, testbase.db.connect()):
|
|
conn.execute("insert into users (user_id, user_name) values (%s, %s)", [1,"jack"])
|
|
conn.execute("insert into users (user_id, user_name) values (%s, %s)", [2,"ed"], [3,"horse"])
|
|
conn.execute("insert into users (user_id, user_name) values (%s, %s)", 4, 'sally')
|
|
res = conn.execute("select * from users")
|
|
assert res.fetchall() == [(1, "jack"), (2, "ed"), (3, "horse"), (4, 'sally')]
|
|
conn.execute("delete from users")
|
|
|
|
@testbase.supported('postgres')
|
|
def test_raw_python(self):
|
|
for conn in (testbase.db, testbase.db.connect()):
|
|
conn.execute("insert into users (user_id, user_name) values (%(id)s, %(name)s)", {'id':1, 'name':'jack'})
|
|
conn.execute("insert into users (user_id, user_name) values (%(id)s, %(name)s)", {'id':2, 'name':'ed'}, {'id':3, 'name':'horse'})
|
|
conn.execute("insert into users (user_id, user_name) values (%(id)s, %(name)s)", id=4, name='sally')
|
|
res = conn.execute("select * from users")
|
|
assert res.fetchall() == [(1, "jack"), (2, "ed"), (3, "horse"), (4, 'sally')]
|
|
conn.execute("delete from users")
|
|
|
|
if __name__ == "__main__":
|
|
testbase.main()
|