9 lines
165 B
Python
9 lines
165 B
Python
"""
|
|
Insert operation into sent table
|
|
"""
|
|
|
|
from helper_sql import *
|
|
|
|
def insert(t):
|
|
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)
|