Skip to content

Commit

Permalink
changed db password
Browse files Browse the repository at this point in the history
  • Loading branch information
epsibashanthini committed Jan 23, 2023
1 parent b09e88d commit f458669
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AddBook.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def addBook():
root.geometry("600x500")

# Add your own database name and password here to reflect in the code
mypass = "Epsiba*123"
mypass = "Password"
mydatabase="db"

con = pymysql.connect(host="localhost",user="root",password=mypass,database=mydatabase)
Expand Down
2 changes: 1 addition & 1 deletion DeleteBook.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pymysql

# Add your own database name and password here to reflect in the code
mypass = "Epsiba*123"
mypass = "Password"
mydatabase="db"

con = pymysql.connect(host="localhost",user="root",password=mypass,database=mydatabase)
Expand Down
2 changes: 1 addition & 1 deletion IssueBook.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pymysql

# Add your own database name and password here to reflect in the code
mypass = "Epsiba*123"
mypass = "Password"
mydatabase="db"

con = pymysql.connect(host="localhost",user="root",password=mypass,database=mydatabase)
Expand Down
2 changes: 1 addition & 1 deletion ReturnBook.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pymysql

# Add your own database name and password here to reflect in the code
mypass = "Epsiba*123"
mypass = "Password"
mydatabase="db"

con = pymysql.connect(host="localhost",user="root",password=mypass,database=mydatabase)
Expand Down
2 changes: 1 addition & 1 deletion ViewBooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pymysql

# Add your own database name and password here to reflect in the code
mypass = "Epsiba*123"
mypass = "Password"
mydatabase="db"

con = pymysql.connect(host="localhost",user="root",password=mypass,database=mydatabase)
Expand Down
Binary file added __pycache__/AddBook.cpython-39.pyc
Binary file not shown.
Binary file added __pycache__/DeleteBook.cpython-39.pyc
Binary file not shown.
Binary file added __pycache__/IssueBook.cpython-39.pyc
Binary file not shown.
Binary file added __pycache__/ReturnBook.cpython-39.pyc
Binary file not shown.
Binary file added __pycache__/ViewBooks.cpython-39.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from IssueBook import *
from ReturnBook import *
# Add your own database name and password here to reflect in the code
mypass = "Epsiba*123"
mypass = "password"
mydatabase="db"

con = pymysql.connect(host="localhost",user="root",password=mypass,database=mydatabase)
Expand Down

0 comments on commit f458669

Please sign in to comment.