I have a program in vb.net 2010 that connects to ms access 2007 using odbc ( to do so I added the .accdb database to data origins in
"controlPanel->AdministrativeTools->ODBC DataOrigins" and then the code to connect is:
Public Shared Function GetDataReader(ByVal SQL As String) As OdbcDataReader
Dim dr As OdbcDataReader
Try
con = New OdbcConnection
con.ConnectionString = "Dsn=myacc;uid=sa;pwd=PASS;"
con.Open()
Dim cmd As New OdbcCommand(SQL, con)
dr = cmd.ExecuteReader
cmd.Connection.Close()
cmd.Connection.Dispose()
cmd.Connection = Nothing
cmd.Parameters.Clear()
cmd.Dispose()
cmd = Nothing
con.Close()
con.Dispose()
Return dr
Catch ex As Exception
MessageBox.Show(ex.Message, "SGEA", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
If (con.State = System.Data.ConnectionState.Open) Then
con.Close()
con.Dispose()
End If
End Try
dr = Nothing
Return dr
End Function
So my question is how can I put this db in a network share,
I was reading that instead of adding (C:\MYPATH\myacc.accdb) in the data origins I would need to do (\\server\db\myacc.accdb) instead.
Is that the only change I need to do, or do I have to make any other change inside the vb.net functions, what is missing?