11 lines
222 B
Python
11 lines
222 B
Python
"""
|
|
Insert values into sent table
|
|
"""
|
|
|
|
from helper_sql import sqlExecute
|
|
|
|
|
|
def insert(t):
|
|
"""Perform an insert into the `sent` table"""
|
|
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)
|