HRDashBoard / query.py
aibyml's picture
Upload 13 files
ae76385
raw
history blame contribute delete
324 Bytes
#import mysql.connector
#import streamlit as st
#connection
#conn=mysql.connector.connect(
# host="localhost",
# port="3306",
# user="root",
## passwd="",
# db="myDb"
#)
#c=conn.cursor()
#fetch
#def view_all_data():
# c.execute('select * from insurance order by id asc')
# data=c.fetchall()
# return data