I am trying to make a program for a WM5 Pocket PC.

I want it to use an access db for storing all the data when I tried this:
VB Code:
  1. Dim sqlCon As New Data.SqlClient.SqlConnection()
  2.         sqlCon.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=ProStudent.mdb"
  3.         'sqlCon.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\ProStudent.mdb;"
  4.         sqlCon.Open()

It said that there was an option error with the connection string.

What am i doing wrong? / What connection string should I use ?