PyBitmessage-2021-04-27/src/helper_sent.py
2019-11-25 15:17:40 +05:30

10 lines
212 B
Python

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