7 lines
139 B
Python
7 lines
139 B
Python
"""
|
|
Insert operation into sent table
|
|
"""
|
|
|
|
def insert(t):
|
|
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)
|