Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Why are you using ODBC to connect if I might ask? As for the path, I would think that would not be an issue, need to check a bit more into the code to be sure. – Wade73 Jan 2 at 23:27
what would you recommend to use instead of ODBC? – cMinor Jan 3 at 4:17
I would use the System.Data.OLEDB namespace. From there you can just pass the connection string, which I think is a bit more flexible and easier to understand. Here is the link to MSDN article about the connection object - msdn.microsoft.com/en-us/library/…. Then you can head over to ConnectionStrings.com to build your connection string for Access - connectionstrings.com/access-2007 – Wade73 Jan 3 at 4:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.