[Question] How to delete records from a data table using data from a column, python flet #1992
Unanswered
DiegoMarin1
asked this question in
Q&A
Replies: 2 comments 4 replies
-
if the ID in the datatable column is the same ID in the database, you can get all your rows, consult the first cell, that correspond to the ID, and ask for the required value that you need. Once you have found the value, and the row respectively, you can use pop or some other method, and then update the table. |
Beta Was this translation helpful? Give feedback.
4 replies
-
Please build a simple working example and I will help. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question
I want to know how I can delete a record from my table using data from a column, not by number of columns.
this is my table
And I fill it with data from a database
Example I would like to delete a record if its data in the id column is 550
Code sample
Error message
No response
------------------------------------------------------
Beta Was this translation helpful? Give feedback.
All reactions