I am receiveing an error on this line of my code,
If Not IsDBNull(CStr(rs.Fields("a_date").Value)) Then
.Items(i).SubItems.Add(CStr(rs.Fields("a_date").Value))
End If
Any ideas?
I am connecting to an Oracle database using a connebction string. However, I am getting the error
Run time error '-2147217871 (80040e31)'
[Oracle][ODBC][Ora]ORA-01013: user requested cancel of current operation.
My connection string is
Set con = CreateObject("ADODB.Connection")
Set rs =...
I have a 3 part DB naming convention such as
DB1.dbo.client
Is there any way to make the first part into a variable such as;
DECLARE @DB as varchar(20)
SET @DB = 'DB1'
SELECT * FROM @DB + '.dbo.client'
Any help would be appreciated
I have created an ADODB connection to a sql server 2000 database. However, when I use the copyfromrecordset command I don't get all the data back.
The field which the command doesn't like is a field declared as text with a length of 16.
Is there any other way I could get the data?
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.