blob: 484179a385a2f451cfc9db3b5ae9c0457a8c9550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
def make_where_clause(params):
"""Create a where clause for each key-value pair in a dict, joined
by AND.
Parameters
----------
params : dict
A dict of keys and values
"""
where_items = []
where_clause = None
try:
for key in params.keys():
where_items.append("%s=:%s" % (key, key))
where_statement = None
if len(where_items) > 1:
where_statement = " AND ".join(where_items)
else:
where_statement = where_items[0]
where_clause = " ".join(("WHERE", where_statement))
except AttributeError:
pass
return where_clause
def update_clause_from_dict(data):
"""Create an update clause from a dictionary
Parameters
__________
data: dict
A dict of the new value and the column name as key
"""
update_items = []
set_statement = None
update_clause = None
try:
for key in data.keys():
update_items.append("%s = :%s", (key, key))
if len(update_items) > 1:
update_clause = ", ".join(update_items)
else:
update_clause = update_items[0]
set_statement = " ".join(("SET", update_clause))
except AttributeError:
pass
return set_statement
|