Visual Basic - Conectar a Access

Life is soft - evento anual de software empresarial
 
Vista:

Conectar a Access

Publicado por Anahis (42 intervenciones) el 15/10/2004 15:27:16
Hola a todos, estoy haciendo una conexion a Access a travez d ODBC, y me da un error al abrir la base de datos desde visual basic
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Conectar a Access

Publicado por miguel (1042 intervenciones) el 15/10/2004 17:29:04
Esto lo encontre en la ayuda de visual pero se conecta por medio DAO, espero y te sirva:
Prueba con este codigo:
Sub NewDatabaseCode()

Dim wrkMain As Workspace
Dim conPubs As Connection
Dim dbsPubs As Database
Dim prpLoop As Property

' Create ODBCDirect Workspace object instead of Microsoft
' Jet Workspace object.
Set wrkMain = CreateWorkspace("", "admin", "", dbUseODBC)

' Open Connection object based on information in
' the connect string.
Set conPubs = wrkMain.OpenConnection("DsnAcess", _
dbDriverNoPrompt, False, _
"ODBC;DATABASE=pubs;UID=sa;PWD=;DSN=DsnAcess")
' Assign the Database property to the same object
' variable as in the old code.
Set dbsPubs = conPubs.Database

' Enumerate the Properties collection of the Database
' object. From this point on, the code is the same as the
' old example.
With dbsPubs
Debug.Print "Database properties for " & _
.Name & ":"

On Error Resume Next
For Each prpLoop In .Properties
If prpLoop.Name = "Connection" Then
' Property actually returns a Connection object.
Debug.Print " Connection[.Name] = " & _
.Connection.Name
Else
Debug.Print " " & prpLoop.Name & " = " & _
prpLoop
End If
Next prpLoop
On Error GoTo 0
End With
dbsPubs.Close
wrkMain.Close
End Sub
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar