Spaces:
Sleeping
Sleeping
Update database.py
Browse files- database.py +7 -5
database.py
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
from sqlalchemy import create_engine, MetaData, inspect
|
2 |
|
3 |
-
# Initialize
|
4 |
engine = create_engine("sqlite:///database.db")
|
5 |
metadata_obj = MetaData()
|
6 |
|
7 |
# Function to check existing tables
|
8 |
def get_existing_tables():
|
9 |
"""
|
10 |
-
Returns a list of
|
11 |
|
12 |
Returns:
|
13 |
list: List of table names.
|
@@ -15,15 +15,17 @@ def get_existing_tables():
|
|
15 |
inspector = inspect(engine)
|
16 |
return inspector.get_table_names()
|
17 |
|
18 |
-
# Function to
|
19 |
def initialize_database():
|
20 |
"""
|
21 |
-
|
22 |
"""
|
23 |
tables = get_existing_tables()
|
|
|
24 |
if not tables:
|
25 |
-
print("No tables found.
|
26 |
else:
|
27 |
print(f"Database initialized with tables: {tables}")
|
28 |
|
29 |
initialize_database()
|
|
|
|
1 |
from sqlalchemy import create_engine, MetaData, inspect
|
2 |
|
3 |
+
# Initialize the SQLite database
|
4 |
engine = create_engine("sqlite:///database.db")
|
5 |
metadata_obj = MetaData()
|
6 |
|
7 |
# Function to check existing tables
|
8 |
def get_existing_tables():
|
9 |
"""
|
10 |
+
Returns a list of tables currently in the database.
|
11 |
|
12 |
Returns:
|
13 |
list: List of table names.
|
|
|
15 |
inspector = inspect(engine)
|
16 |
return inspector.get_table_names()
|
17 |
|
18 |
+
# Function to safely start the database
|
19 |
def initialize_database():
|
20 |
"""
|
21 |
+
Starts the database without failing if no SQL file is uploaded yet.
|
22 |
"""
|
23 |
tables = get_existing_tables()
|
24 |
+
|
25 |
if not tables:
|
26 |
+
print("No tables found. The database is waiting for an SQL file upload.")
|
27 |
else:
|
28 |
print(f"Database initialized with tables: {tables}")
|
29 |
|
30 |
initialize_database()
|
31 |
+
|