
[RESOLVED] ADODB connection on 64-bit...-VBForums
Feb 14, 2016 · Re: ADODB connection on 64-bit... The issue was that I was using mapped drives - and getting "path not found" errors. I changed to using UNC pathing and this worked, but …
[RESOLVED] run time error '2147467259 (80004005)-VBForums
Oct 22, 2017 · Dim cn As ADODB.Connection Set cn = New ADODB.Connection Dim rs As ADODB.Recordset Dim StrConn As String StrConn = "Driver = …
How to properly update Recordset?-VBForums
Nov 26, 2024 · How to properly update Recordset? Hi, I have an ADODB.Recordset that I use to retrieve values from database and populate my mshflexgrid. Then, with UI, I can update …
[RESOLVED] Creating ADODB Connection to Excel Workbook …
Feb 29, 2024 · Hi all, I am new to VB6 but have been working Excel VBA. I am converting my VBA project to VB 6.0. I am using excel WorkBook as database for now. I am having problem …
[RESOLVED] ADO Command Timeout-VBForums
Mar 8, 2010 · I created a thread about this issue a while back and was told I was incorrectly using a recordset to execute a SQL delete query, and that I should use the execute method of the …
ADODB. Command slow-VBForums
May 28, 2020 · ADODB. Command slow I have several stored procedures in MS SQL Server database. While the number of records in tables included in those SPs were not big everything …
[RESOLVED] ado.Recordset.Filter-VBForums
May 28, 2013 · Re: [RESOLVED] ado.Recordset.Filter I think the main problem here is misunderstanding of what adoRecordset stands for - in the sample I posted it stands for …
[RESOLVED]Run-time error '-2147217865 (80040e37)'-VBForums
Jun 13, 2012 · Dim conConnection As New ADODB.Connection Dim cmdCommand As New ADODB.Command Dim rsRecordset As New ADODB.Recordset Dim sqlString As String …
[RESOLVED] ADO error "3704" object is closed-VBForums
Nov 24, 2008 · Dim rs As ADODB.Recordset Set rs = New ADODB.Recordset With rs .Open "SELECT Username,Password FROM Users", Acon, adOpenKeyset, adLockOptimistic If …
Using ADODB with MSOLEDBSQL in Visual Basic 6.0-VBForums
Aug 2, 2022 · Re: Using ADODB with MSOLEDBSQL in Visual Basic 6.0 Maybe read Using ADO with OLE DB Driver for SQL Server and related articles. Be wary of example code there for VB …