Pavel_Duron
6e887f8925
All checks were successful
continuous-integration/drone/push Build is passing
28 lines
495 B
Python
28 lines
495 B
Python
import sqlite3 as sq
|
|
|
|
|
|
async def db_start(): #подключение к бд
|
|
global db, cur
|
|
|
|
db = sq.connect('dickpick.db')
|
|
cur = db.cursor()
|
|
|
|
cur.execute(''''CREATE TABLE IF NOT EXISTS users(id INTEGER PRIMARY KEY, users_id INTEGER, user_name TEXT, dick_size INTEGER)''')
|
|
db.commit()
|
|
|
|
async def add_user():
|
|
cur.execute('''INSERT INTO users (users_id, user_name) VALUES (?)''',[id1, fullname1])
|
|
db.commit()
|
|
|
|
async def close():
|
|
db.commit()
|
|
db.close()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|