Answer Posted / eric
You mean: "How do I get records from a database?"
You have to get the "dotnet driver" of the database (or any
other datasource) you want to access to.
For example:
MySQL: Connector/Net
Access: Microsoft Access Driver
Oracle: Oracle Data Access Components (ODAC)
Afterwards you build a connection string to tell your
programm which driver you want to use and where the
datasource can be found, for example:
public const string DB_CONN_STRING =
"Driver={Microsoft Access Driver (*.mdb)}; "+
"DBQ=D:\\CS\\TestDbReadWrite\\SimpleTest.mdb";
Afterwards you just have to open a connection to the
database using the previously created connection string and
send a query to the database to get the record:
ADOConnection conn = new ADOConnection(DB_CONN_STRING);
conn.Open();
ADODataReader dr;
ADOCommand cmd = new ADOCommand( "SELECT * FROM <table>",
conn );
cmd.Execute(out dr);
while (dr.Read()){
....}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is an example of form?
What is a windows based application?
What are windows applications?
Which property is used to specify the use of an element in the user interface and reports it to the accessibility aids?
What are the advantages of form?
How to create a set up in vb.net for desktop application please say steps with examples?
Which command prompt utility is used to convert a resource file from the text format into the binary format?
What is the synonym of form?
What is form record?
Is typeform free?
How is anchoring different from docking?
Explain how to split a column header in gridview using c#.net?
What is dynamic linking?
What is the use of play() playlooping() functions?
Name the property which of menu cannot be set at run time?