databases
databases copied to clipboard
add execute_script function
aiosqlite and sqlite3 have this function too, in their case you would do something like:
async with aiofiles.open("path/to/file.sql", "r") as f:
await cxn.executescript(await f.read())
it could be like that, or just give the path to exeuctescript.