Board index » Visual Studio » Opening a dbf file with .NET code
|
Wazza
|
Opening a dbf file with .NET code
Visual Studio298
I have a simple dbf file with the name of OTHWAGE.dbf. I can open it in Visual Studio Server Explorer and see its fields and records by creating a Data Connection. When I copy the connection string and combine it with code from VS Help, I end up with the following: Dim sConnection As String = "Provider=MSDASQL.1; Persist Security Info=False; Data Source=dBASE Files; Extended Properties=""DSN=dBASE Files;DBQ=C:\Temp; DefaultDir=c:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE; DriverId=533;MaxBufferSize=2048; PageTimeout=5 ;""; Initial Catalog=C:\Temp" Dim mySelectQuery As String = "SELECT OTHWAGE.* FROM OTHWAGE" Dim myConnection As New System.Data.Odbc.OdbcConnection(sConnection) Dim myCommand As New System.Data.Odbc.OdbcCommand(mySelectQuery, myConnection) myConnection.Open() Dim myReader As System.Data.Odbc.OdbcDataReader = myCommand.ExecuteReader() While myReader.Read() Console.WriteLine(myReader.GetString(1)) End While For readability purposes, I added carriage returns to the connection string. When I execute this code, I get a system error at the myConnection.Open() line. What I am I doing wrong with this simple code? - |
