Spaces:
Runtime error
Runtime error
File size: 1,296 Bytes
bb19264 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# This file is used to create an SQLite database.
# If adding more tables, you should delete the exising databases, or alter the code here to drop the pre-exising tables first.
import sqlite3
# Establishes a connection to the specified DB. If the DB does not exist, it creates a new one.
connection = sqlite3.connect("Refineverse.db")
cursor = connection.cursor() # A cursor object that is used to handle data.
# Creating the Breakdown table
cursor.execute('''
CREATE TABLE IF NOT EXISTS Breakdown (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_story TEXT,
assignedLabel TEXT
)
''')
# Creating the TextSummarization table
cursor.execute('''
CREATE TABLE IF NOT EXISTS TextSummarization (
id INTEGER PRIMARY KEY AUTOINCREMENT,
Entered_story TEXT,
summary TEXT
)
''')
# Creating the Translation table
cursor.execute('''
CREATE TABLE IF NOT EXISTS Translation (
id INTEGER PRIMARY KEY AUTOINCREMENT,
input_text TEXT,
translated_text TEXT
)
''')
# Creating the TextGeneration table
cursor.execute('''
CREATE TABLE IF NOT EXISTS TextGeneration (
id INTEGER PRIMARY KEY AUTOINCREMENT,
userStory TEXT,
generatedStory TEXT
)
''')
connection.close() # Closes the connection |