погуглив sqlite limitations, удивишься.
supertext = """О великий текст,
Какой величины ты бы ни был
Сохранить тебя мне нужно.."""
cursor.execute("""CREATE TABLE IF NOT EXISTS table1(
id INT,
embed VARCHAR
)""")
if cursor.execute("SELECT id FROM table1 WHERE id = 1").fetchone() is None:
cursor.execute(f"INSERT INTO table1 VALUES (1, '{supertext}')")
connection.commit()
print(cursor.execute("SELECT embed FROM table1 WHERE id = 1").fetchone()[0])