Click here to Skip to main content
15,880,427 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
VB
Dim vcon = connobj.makeConnection()
                Dim vTrans = vcon.BeginTransaction(Data.IsolationLevel.ReadCommitted)
                Dim qry1 = "Select * from testdemo"
                Dim ds As New DataSet
                Dim da = New OdbcDataAdapter(qry1, vcon)
                da.SelectCommand.Transaction = vTrans
                da.Fill(ds, "Table")
                vTrans.Commit()
Posted
Comments
Sinisa Hajnal 28-Jan-15 2:21am    
What have you tried?
Manish Pawar 28-Jan-15 3:31am    
I tried to store result of the select query in data set
and now i want to display the result on the view

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900