M
Markus
Visual Basic.NET, SQL db
--------------------------------------
objRow = objDataSet.Tables("Owners").Rows.Find
(txtSearch.Text)
Here I'm using Find to search SQL database by primary key.
How do I search this database by row but without primary
key.
I would like to search by column "Name"
--------------------------------------
objRow = objDataSet.Tables("Owners").Rows.Find
(txtSearch.Text)
Here I'm using Find to search SQL database by primary key.
How do I search this database by row but without primary
key.
I would like to search by column "Name"