Commit ·
ae8156b
1
Parent(s): 66957d1
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ mydb = connector.connect(
|
|
| 26 |
mycursor=mydb.cursor()
|
| 27 |
st.write("Connection Established")
|
| 28 |
# mycursor.execute("select * from mytable")
|
| 29 |
-
mycursor.execute("select * from
|
| 30 |
result = mycursor.fetchall()
|
| 31 |
for row in result:
|
| 32 |
st.write(row)
|
|
|
|
| 26 |
mycursor=mydb.cursor()
|
| 27 |
st.write("Connection Established")
|
| 28 |
# mycursor.execute("select * from mytable")
|
| 29 |
+
mycursor.execute("select * from users2")
|
| 30 |
result = mycursor.fetchall()
|
| 31 |
for row in result:
|
| 32 |
st.write(row)
|