We will help you, but we wont write anything for you. google, has nearly all the answers you could need. Have a look.
hi currently i m using.
connection=new oledbconnection(oracle connection);
connection.open();
command=new oledbcomman("select * from table_name");
adapter=new oledbdataadapter(command);
adapter.fill(dataset,"Tableinfo");
now i need to get the data from the dataset using only DML.
i tried the following coding but its not working.
conn= new oledbconnection("Provider=SQLOLEDB; server=(local);integrated security=SSPI; database=northwind");
conn.open(); // exception occur in this place.
command = new oledbcommand("Select column from Tableinfo", conn);
.......................
please give an idea i tried many times and still i m face the problem.........