ActiveX Data Objects, a Microsoft middleware for accessing data sources. Allows to access data from various languages without knowing how the database is implemented. Successor of RDO (Remote Data Objects) and DAO (Data Access Objects), first introduced in 1996.
1
vote
0answers
38 views
ADODB recordset has always EOF and BOF as True while records exist
I have next code on Visual Basic 6:
Static cmd As ADODB.Command
Static rs As ADODB.Recordset
If cmd Is Nothing Then
Set rs = New ADODB.Recordset
rs.ActiveConnection = conn
Set cmd = New ...
2
votes
1answer
54 views
PromptDataSource and password
I use PromptDataSource to allow users to setup a database connection.
connectionString := ADOdb.PromptDataSource(0, '');
However I can't get it to work with "Allow saving password" when using the ...
0
votes
2answers
43 views
Excel 2007 VBA - Error: “Object variable or With Block variable not set” when using OLEDB connection to another Excel File
So my problem is that between 2 different computers my connection to the string no longer can open a connection.
Here is what I have:
Dim sFileName As String
Dim sFilePath As String
sFileName = ...
0
votes
0answers
16 views
How to prevent ADO from altering my SQL command text?
i am running a MERGE statement against an SQL Server 2008 R2 database (which is in 2008 compatibility mode).
The exact merge statement SQL is irrelevant, but here is an example of a MERGE statement:
...
-2
votes
0answers
49 views
C# / ADODB Read Error
For some odd reason, my query sometimes fails to return the last row in the table, and I'm at a loss to understand why. The table I'm querying has, let's say, 2000 rows; the first time I query it, ...
0
votes
1answer
36 views
ExecuteExcel4Macro to get range/charts from closed workbooks
I use these lines to get values from closed workbooks:
Arg = "'" & Path & "[" & File & "]" & Sheet & "'!" & "R4C4"
Arg = CStr(Arg)
GetValue = ExecuteExcel4Macro(Arg)
...
0
votes
0answers
14 views
dll works on win7 but not winXP
I've got a project made in Visual Studio 2010. I am using TFS source control to get this project on other stations.
This project has a reference dll in a certain path inside the project's folder. on ...
0
votes
0answers
43 views
ADODB.Command execute always returning wrong value i.e -1
I am unable to find no records affected from below query.As in both successfull transaction and failed transaction it is returning -1 value.
Public Function fnModifyRecord() As Boolean
Dim ...
0
votes
0answers
25 views
ADODB Searching for Record by using the known primary key
I need your help,
I can't seem to be able to search for a record using the primary key. I am using client side javascript (adodb) for this.
The function below should theoretically work, what am I ...
0
votes
0answers
21 views
How to get an Element value via Javascript from an adodb GetMenu
I have created an option menu with adodb containing my report names:
echo'';
print $Reports->GetMenu('Reports',$Report,true,false,0,'onchange="pruefeweiterauswahl();"');
echo'';
Now I would like ...
0
votes
2answers
31 views
PHP getting LDAP entryUUID via adodb
I'd need to get the entryUUID for a record in the LDAP db via adodb ...
Someone know how could I do it ?
$host = 'ldap.domain.com';
$ldapbase = 'dc=domain,dc=com';
...
0
votes
0answers
21 views
Adodb dll versioning issue
I hope this question is appropriate for this site.
I've got a solution which was created in Visual Studio 2010. This solution is suppose to run on both Windows 7 and Windows XP.
The problem is that ...
0
votes
0answers
8 views
RecordSet acts weird with WindowsForm control in (undo add new all the time)
I am designing an application which is using PivotReport from OWC, Office Web Component. The PivotReport is a ActiveX control and it has a member called DataSource of type msdatasrc.DataSource. Since ...
0
votes
0answers
17 views
ADODB.Recordset vs ADO.Net
I have migrates an application from VB6 to .Net 2005 and found ADODB.Recordset in that. Should I leave it as it is or should I change it with ADO.Net? Any insight about how ADODB.Recordset works in ...
0
votes
1answer
40 views
ADODB and SqlClient
Hi I am working on a migration project. The front end was developed on vb6 and back end service was build on C++ COM. Currently, we are migrating the System to .Net 4.5.
In my actual code, both the ...
0
votes
0answers
34 views
Exporting SQl Table through VBA
I have created a procedure to export some tables from Sql to CSV. I am using xp_cmdshell bcp utility and loops to export sql table to csv file. When I am Executing through SQl Server 2012 it is ...
0
votes
0answers
68 views
IIS8 Server object error 'ASP 0177 : 800401f3' at Server.CreateObject(“ADODB.Recordset”)
I get the following error:
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/loadHome.asp, line 15
800401f3
Line 15 is
Set checkUser = ...
0
votes
0answers
14 views
ADOX.CatalogClass Late Binding - Extracting Values from Tables Collection
I am creating a small application that will edit some column names and do a couple more functions for a database conversion. The catch is that I have to use Late-Binding of the ADOX assembly ...
1
vote
1answer
95 views
ADODB.Stream error '800a0bbc' Write to file failed
I've weird and strange error showing while I change hosting provider which is:
ADODB.Stream error '800a0bbc'
Write to file failed.
/cp/portal_upload.asp, line 63
I gave the needed ...
0
votes
1answer
51 views
mysql error 2014: Commands out of sync in adodb
I have 1 stored procedure and 1 simple query. And I'm using mysql_query to query the stored procedure and I'm using adodb to query the simple query. Here is my code:
<?php $relus= ...
0
votes
1answer
112 views
MySQL Recordset Not Returning Values When it Should
I'm trying to retrieve a recordset from MySQL through VBA (in Excel) using ADODB. I can successfully connect to the MySQL database over the network and can even return a list of the tables using ...
1
vote
1answer
184 views
Visual Basic 6 ADO update sql string
I am trying to update a single record in sql using a recordset I'm Pulling data from one recordset and trying to save it to another table in the database This is the code I have the insert statement ...
1
vote
1answer
52 views
VBscript for adodb query
I need to add a few lines to our billing system, and I don't know enough about the syntax of this call. Can someone tell me what the zero's in the first line of this query means?
strSqlStmt = ...
7
votes
4answers
152 views
VBA to Prevent Keyboard Input While a Package Object (XML) is Read into ADODB Stream?
I am developing an application which opens and reads an XML document previously embedded in a PowerPoint presentation, or a Word document. In order to read this object (xmlFile as Object) I have to ...
2
votes
2answers
53 views
How to refer to Excel columns without headers in TSQL
I dived into documentation but since I didn't find any information (Well, actually I found similarities with some other SO questions but not what I want), I'm asking you guys to help me :
I'm ...
0
votes
1answer
24 views
Best way to compile a dynamic ADODB SQL Statement based on user input
I need your help,
How can I program a user defined dynamic SQL query.
I have 4 text fields on my webpage.
var a = document.getElementById('prefix').value
var b = ...
0
votes
1answer
39 views
ADODB in ASP.NET Reference Issue
I have an ASP.NET based web application. I created all the folders by hand, so the full structure is as below.
ROOT
sendmail.aspx
Web.config
App_Code
sendmail.cs
...
0
votes
1answer
37 views
Retrieving data from Excel spreadsheet to Excel spreadsheet in a block
Here's my problem :
I want to retrieve data from an Excel XML spreadsheet (*.xlsx) within another Excel spreadsheet without opening it. So I gave a chance to OLEDB with the ACE Provider.
The ...
0
votes
1answer
97 views
Find and display the last recordset in ADO conn
<%Dim adoCon
Dim rsLogbook
Dim strSQL
Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("databasename.mdb")
Set ...
1
vote
0answers
18 views
php adodb StartTrans() is not working?
i am using adodb library for my php project
i am connecting to mySQL 5.5 with PHP 5.1
what i am trying to do is insert 5 SQL statement and 1 update. if just one of these fail..i want to rollback all ...
0
votes
1answer
72 views
PHP ADOdB SQL query times out
Using ADOdb to access MS SQL Server in a database intensive PHP application. A few queries and stored procedures run longer than 30 seconds and ADODB throws an exception for a query timeout. There is ...
0
votes
0answers
95 views
VBA ADODB recordset conversion error when getting recordcount
I have an Access database that has been functional for awhile now. I have a VBA query that creates a connection and populates an ADO recordset from an SQL statement. I use this ADO reocordset to ...
0
votes
1answer
86 views
Export Excel Spread Sheet to Access Table with A Timestamp?
I currently use a set up like the one below.
Set AccessConn = CreateObject("ADODB.Connection")
sExcel = "[Excel 8.0;HDR=YES;IMEX=2;DATABASE=" & ThisWorkbook.FullName & "].[Sheet1$]"
...
1
vote
1answer
234 views
Get Row number of excel using ADO
We are trying to get the row number of particular recordset retreived based on soome condtion. consider below table
Name Id
abc 1
cde 2
efg 3
Now, how to get the row number or ...
0
votes
0answers
141 views
system.type system.runtime.interopservices.marshal.gettypefromclsid(system.guid) Error
I'm getting this error while running the simple adodb connection on my win forms.
And not able to get what is the reason behind it. Because it is running on machine where visual studio is installed.
...
0
votes
0answers
28 views
Is there any difference between executing a bare-word stored procedure and using EXEC (in ADODB)?
Context: JScript, ADODB.Connection, Windows Server 2003, SQL Server 2000
Given the following code
var dsn = "DRIVER={SQL ...
1
vote
1answer
233 views
Excel table loses number formats when data is copied from ADODB recordset
I'm updating an excel table from an ADODB recordset using the CopyFromRecordset method.
After the update, the numbers show up as dates wherever there are number columns.
The workaround I used ...
0
votes
0answers
60 views
Unable to connect to data source
I try to connect to my batabase by means of php + adodb.
This is my php code:
$kpp_db = ADONewConnection('odbc_mssql');
$kpp_db->debug = true;
$kpp_db->charSet="UTF-8";
$kpp_dbDSN = ...
0
votes
0answers
316 views
IM002: [unixODBC][Driver Manager]Data source name not found, and no default driver specified
I need to conect to datebase with ADOdb library. At the firs time i get an error message
"Missing extension for odbc".
Now I just install php5-odbc package and get another message
"IM002: ...
0
votes
0answers
72 views
ADOdb executing query don't work
I try to connect to datebase with odbc_mssql driver:
$kpp_db = ADONewConnection('odbc_mssql');
$kpp_db->debug = true;
$kpp_db->charSet="UTF-8";
$kpp_dbDSN = "Driver={SQL ...
0
votes
0answers
28 views
Joomla msmsql driver VS ADOdb msmsql driver
I have an old site on Joomla which uses mssql driver from ADOdb. Unfortunately this driver is out of date and not work in new releases PHP. So I want to raise from the grave this site and I need to ...
0
votes
1answer
112 views
Parameterized query in Powerpoint VBA (ADODB)
I'm having some trouble getting a parameterized query to work in a Powerpoint project I'm working on (a kiosk app). The goal is to allow partial search strings that will search first name, last name, ...
0
votes
1answer
102 views
php - Create adodb db2 loader in codeigniter
can anybody helpme to create adodb loader for db2 database in codeigniter. I've try to use some library and it work for oracle database, but now i'm confuse of connecting my new codeigniter ...
0
votes
1answer
86 views
Why ADO VBA code returns only 6559 records?
I try to make macro that operate with sql statements with ADO liblary, but actually it returns only 6559 records, while one of my table have 72k records.
Why?
Recently, I've noticed, that actually my ...
1
vote
1answer
125 views
Return dates (not strings) from an ADODB query
The function below works fine and outputs the correct result except it outputs the dates as strings and not as dates. How can I get it to output dates instead?
Function GetExpiries_YieldX(TradeDate ...
1
vote
1answer
299 views
Append data to Excel column using VB6 ADO
I am testing a sample VB6 application which inserts text from TextBox to Excel.
I would like to find the last used row in the column, and append text from txt1 TextBox at the next row whenever user ...
1
vote
1answer
231 views
Error 80004005 when executing query in ADODB (VBA, Excel and Acccess 2010)
I have a problem which I can not get my head around. I have an Access database where I am trying to create a set of queries in by using VBA in Excel by use of ADODB.
I have several queries that are ...
3
votes
1answer
769 views
Using excels named range/ object in a sql string VBScript
( I have edited this questions, see below ) I have searched on here and google but I still cannot solve my issue. I am trying to use an excel's named range equivalent in my .vbs file. This below works ...
1
vote
2answers
478 views
VBA: Import table from Excel into SQL
I am trying to import a data table from excel into SQL Server 2012, using VBA.
Preferably with help of a UDF.
The excel table looks something like this.
TableID 2012 2011 2010 2009
row 1 ...
0
votes
2answers
117 views
VB.NET - Modifying MS Access Table Name with ADOX
I'm trying to modifying a table name based on two textbox inputs. I have one form creating the table using OleDb so I want to use the inputted information from that form to search for the table in the ...


