I have a program that I’m attempting to get counts using ADO. The code is below.
Global Const ConnString = "ODBC;UID=user;PWD=passwd;DSN=ORA"
Dim OraD As ADODB.Connection
Dim rsPreSample As ADODB.Recordset
Set OraD = CreateObject("ADODB.Connection")
OraD.CommandTimeout = 0
OraD.Open...
I have a database with forms that use ADO to access data files. In the design stage, I went into Tools/References and checked "Microsoft ActiveX Data Objects 2.1 Library", which made the ADO work.
For each “case” that is run, the application creates a separate database and copies all forms...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.