search table + sql
Database
3
Posts
3
Posters
0
Views
1
Watching
-
hi all, i have a value entered by user into a text box, i want to search the table for the detail of the entered text. plz provide me with the syntax to do such thing Regards
-
hi all, i have a value entered by user into a text box, i want to search the table for the detail of the entered text. plz provide me with the syntax to do such thing Regards
this solution if you use string Select * from tableName where ColumnName = '"+textbox.text+"' this solution if you use integer Select * from tableName where ColumnName = '+textbox.text+' Rami Abdalhalim