SaiTejaSrivilli/TexttoSQL-GenAi
0
1import sqlite32 3conn = sqlite3.connect('student.db')4curr = conn.cursor()5rows = curr.execute("SELECT NAME FROM STUDENT")6 7for row in rows:8 print(row)9 10conn.commit()11conn.close()12#Displaying all the records13 