Skip to content

Commit 7451c3d

Browse files
authored
Change database connection details in get_db function
Updated database connection parameters to use specific credentials and database.
1 parent 19fcd49 commit 7451c3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
def get_db():
77
return mysql.connector.connect(
88
host="localhost",
9-
user="your_user",
10-
password="your_password",
11-
database="your_database"
9+
user="f832139",
10+
password="password",
11+
database="sampledb"
1212
)
1313

1414
# INSERT

0 commit comments

Comments
 (0)