Hi I have a code connected to DB (SQLite) this is the data frame that shows on the web app
as you can see, in row 9 there is no value in the result column what I want to happen is that a user can update a specific result by row id
this is a snippet of the code:
if selected == 'Editor':
project_names = st.selectbox('Select Project:', ['Lightspeed', 'Quantom'])
if project_names == 'Lightspeed':
con = sqlite3.connect('Performance.db')
c = con.cursor()
c.execute('''
SELECT
*
FROM Results
''')
# machines_option = ('Select Machine', ('QLS250', 'QLS450', 'QLS650', 'QLS800'))
tdf = pd.DataFrame(c.fetchall(), columns=['Name', 'Test', 'Machine', 'SmartNics', 'Result'])
what I want to do exactly is that a user can choose a row and update a column in that row
Is that possible?
p.s: if any information is missing please let me know
Thanks!