MDB Locating record

pekt2s

Member
Joined
Apr 26, 2007
Messages
15
Programming Experience
Beginner
Hi. I want to ask somthing. What should i do if i have a Database of MDB and i want go in a certain record. Pls. give some example codes. I really need an answer to this. Thanks in advance.
:)
 
I might be missing the point, but you'll need to use a filter "WHERE" clause in your SQL statement. Accessing a .mdb (Access database file) in code must be done using JET SQL.

Try googling an SQL tutorial, then look in the OleDb libraries and you'll find OleDbCommand and OleDbConnection that can be used to access and affect your data... Configure a DataAdapter with the commands you need and use a DataTable to store the data.

Now you should have the necessary keywords to google your way out of this one ;) !
 
Back
Top