<Ч
Size: a a a
<Ч
pl
async def insert_local_info(uid = None, text = None, img_path = None):
con = sqlite3.connect(r'database/local_db.db')
cursor = con.cursor()
try:
cursor.execute(f"INSERT INTO post_info(uid, text, img_path) VALUES ('{uid}', '{text}', '{img_path}');")
except Exception as e:
print(e)
con.commit()
cursor.close()
con.close()
ᅠ
S
И
<Ч
ᅠ
pl
S
ᅠ
ᅠ
<Ч
S
<Ч
<Ч
pl
pl
pl