This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-03-03/src/helper_sent.py

10 lines
212 B
Python
Raw Normal View History

2019-10-07 19:28:12 +05:30
"""
2019-10-09 18:57:51 +05:30
Insert values into sent table
2019-10-07 19:28:12 +05:30
"""
2019-10-09 18:57:51 +05:30
from helper_sql import *
def insert(t):
2019-10-09 18:57:51 +05:30
"""Perform an insert into the `sent` table"""
2015-03-09 02:35:32 -04:00
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)