Dim queryString As String = "SELECT [Example_Name].[Example_Name], [Example_Price].[Example_Price], [Example_Type].[Example_Type] FROM [Products]"& _
""
Can you replace the above statement with this and try
Dim queryString As String = "SELECT [Example_Name], [Example_Price], [Example_Type] FROM [Products]"
razzied104
Dim connectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0; Ole DB Services=-4; Data Source=" & Server.MapPath("ExampleShop.mdb")
Could you put a break point and see the string in the connectionString variable is correct.
Thanks & Regards,
Bimal
Marked as answer by razzied104 on Mar 25, 2012 09:40 PM
Bimalvv
Contributor
2372 Points
481 Posts
Re: What is the CommandName refering to?
Mar 25, 2012 09:03 PM|LINK
Can you replace the above statement with this and try
Could you put a break point and see the string in the connectionString variable is correct.
Bimal