ActiveX Data Objects

learn more… | top users | synonyms

1
vote
2answers
86 views

Error: Object Was Open - Delphi

I have the following issue, When ever I run this code in the procedure, getting a SQL from my SQL COMPACT DATABASE(sdf), it gives me an error "Object Already Open". How can I fix this. Below is my ...
0
votes
1answer
41 views

Pulling an column of values from SQL and putting them in an array VBA

I am trying to get a list of employee numbers from our database so I can iterate through them to locate information that is listed by employee number. They are not sequential so a counter doesn't ...
2
votes
1answer
29 views

Excel To ADO RecordSet has empty values for numeric cells

I'm trying to import some data to work with from an Excel file but I'm running into problems with numeric cell values. I have some columns that will have values where some are all numeric while other ...
0
votes
0answers
34 views

Converting application from Visual Studio 2003 to Visual Studio 2010 ADO C++

I am converting a real huge application from VS 2003 to VS 2010. One of its parts is a Windows service that pools http connections and makes database transactions with SQL Server. The 2003 project was ...
0
votes
0answers
10 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 ...
4
votes
1answer
53 views

ADO is truncating Excel data

I have a function that gets an ADODB recordset from the contents of a worksheet using ADO, as follows: Function WorksheetRecordset(workbookPath As String, sheetName As String) As adodb.Recordset Dim ...
1
vote
0answers
33 views

Create Access table from text file

I need to create an access (2007) table from a text file. I know ahead of time what columns should exist, but from time to time the vendors slip up and submit a text file that contains an incorrect ...
0
votes
0answers
11 views

What is the correct version of ASE Sybase driver to use for a 32-bit application running on 64-bit Windows

What is the correct version of Sybase .net driver to use from a 32-bit application running on 64-bit Windows OS? Should I be installing the Sybase PC-Client 32-bit version (because my application is ...
0
votes
0answers
28 views

Insert long string into Access DB using parametrised query in classic ASP

I'm trying to update a classic ASP application and as part of the update I've tried to replace dynamic SQL using string concatenation with a parametrised query. The problem is that the parameters ...
-2
votes
1answer
7 views

Dataset is not connected Anyone agrees with me?

I think dataset is not connected .You can close db connection and open other connection, update dataset data to other database. Anyone agrees with me?
1
vote
1answer
29 views

Out of memory error in Delphi with ODBC and MidasLib

I have an ADOQuery connected to a DataSetProvider connected to a ClientDataSet connected to a DataSource connected to a DBGrid. Under some circumstances, the query returns too many records, and I get ...
0
votes
2answers
26 views

Is there a way to manage part of an Entity Framework object using EF and the remainder using ADO?

I have to maintain an application that creates and manages quotations. (A quotation is a single class containing all information needed for pricing). Most of the time, creating a quotation means ...
0
votes
1answer
70 views

Update, Add rows to a datatable VB.Net

I have tried so hard to solve my problem, here's what I'm trying to do: I have an XML file that I load into a dataset("ds") using ReadXML, several tables are populated in to the dataset, the one I'm ...
1
vote
2answers
28 views

execute “sp_MSforeachtable” (SQL Server 2008 R2) from Excel 2003 using ADO

I want to analyse my DB and get the results for each table into an MS Excel worksheet by executing "sp_MSforeachtable 'EXECUTE sp_spaceused [?];';" from an ADODB Command or Recordset and then use ...
-1
votes
0answers
33 views

(c++ builder 6, ADO, SQL SERVER) Query results handling [closed]

I am trying to make a simple login application that it will search if the username and password exist, in a table at a database hosted on SQL SERVER that i have already connected to my app. The ...
0
votes
2answers
88 views

Importing a large .csv into Excel,

I was trying to import a large .csv file into Excel. The file has close to 4 million rows and 329 columns so it far exceeded Excel's 65536 1M row limit. I found a VB script online to import text files ...
0
votes
1answer
53 views

Column Headers Repeated Into Rows of Table MS SQL Server

I have an Excel file linked to MS SQL Server through ADO connections. Within this file I can update data in the database. IE each row in Excel is a row in SQL Server. Everything works great, except ...
0
votes
2answers
29 views

Handling a #Num! Error on importing Excel into Access

I'm importing a spreadsheet from Excel 2003 to Access 2003 using ADO (Provider = "Microsoft.Jet.OLEDB.4.0"). However, I've got some text entries in a date field. These come through as #Num! values, as ...
0
votes
0answers
34 views

Exception when creating new ADO.NET Entity Data Model

After I made a new Class Libary project, i right click on new-item > ADO.NET Entity Data Model > Generate from database. Then after selecting the tables, the diagram is shown. Then when i click on ...
2
votes
1answer
70 views

Return SQL Identity to VB Variable on INSERT [duplicate]

Hi I have some code below and I wish to return the resultant Identity Number when I execute the SQL Statement. set objCnn = Server.CreateObject("ADODB.connection") CurrMachine = "my-test-box" ...
0
votes
0answers
22 views

Excel via ado replacing brackets with parenthesis in column names

I am reading excel files via ado(JET or ACE). When a column name is Example [foobar], the ado Item object returns Example (foobar) for the Name. Is there a way to get the true value? Here is the ...
0
votes
0answers
56 views

Delphi Obtaining Fieldname from parameter in ADOQuery

I am using Delphi 7. Is there any way to determine the associated underlying field from the parameters of an ADO query? For example, if I have an update query Update Orders Set Job_No = :JN, ...
1
vote
0answers
51 views

“Out of memory” error when processing large recordsets

I have a Windows Script host script which executes a Stored Procedure in our database and returns back a large recordset with about 225 columns (the column count does vary depending on the query, it ...
2
votes
2answers
146 views

How to import actual value, not formatted one from excel

I'm struggling with importing a date value from an excel file. Importing part works fine! The only problem is its format. In the excel file, all the date values are typed in 'yyyy-mm-dd' format but ...
-1
votes
0answers
85 views

Delphi / ADO : TADODataSet.post vs TADOCommand.Execute? [closed]

I have a table that i use to sync the state of my client's status. This table is also used by other applications to alert about client's status. One way of keeping the table up to date is to fire an ...
0
votes
1answer
50 views

SQLDataReader not reading using VB.net

I am using a SQLDataReader to display the results of my stored procedure, however, I have been unable to have it display any records. I am not generating an error and if I write out ...
1
vote
1answer
188 views

Threaded Delphi ADO Query

I have a query code that i can call every time I need to fetch data from the database, and I want it to be threaded. Not sure how to implement this in a thread so I can reuse this code, basically, I ...
1
vote
1answer
96 views

Cannot get ADO connection working on a classic ASP website running in IIS Express on Windows 7 64 bit

I have a legacy classic ASP website that I need to do some maintenance work on. My development machine is running Windows 7 64 bit, Visual Studio 2012 and IIS Express 8.0. The ASP app is backed by a ...
1
vote
2answers
69 views

VBscript RecordCount property

I am newbie in VBScript and I've come across with the following problem. I want get data from sql server db and to allow RecordCount properties. Next code get data but RecordCount is disabled. How can ...
0
votes
2answers
50 views

Datagridview connection from code to form designer

I've been following C#station's ADO.net tutorials today and I've gotten to the datagrid example (http://csharp-station.com/Tutorial/AdoDotNet/Lesson05) which has a datagrid built behind the designer, ...
2
votes
1answer
80 views

ExecuteComplete ADODB Connection event not fired with adAsyncExecute parameter

I have a problem trying to catch the completion of a stored proc execute asynchronously. Below my code VBA (in a class module named clsAsync): Option Explicit Private WithEvents cnn As ...
0
votes
1answer
138 views

Unable to connect to Access database with ADO

I need to import a bunch of tables stored in .txt files into an Access database. When they are done importing, I use an ADO connection to communicate between the database and an Excel workbook. I have ...
0
votes
0answers
29 views

The multi-part identifier “OrderCredit.User_ID” could not be bound

What went wrong please help ! SqlCommand comm = new SqlCommand( "update Amounts set E_Wallet = (select OrderCredit.OrderAmount + E_Wallet from OrderCredit) Where ...
-1
votes
1answer
18 views

The multi-part identifier could not be bound [closed]

Please help me to fix this error ! (The multi-part identifier "OrdeCredit.Order_ID" could not be bound.) SqlCommand insertinto = new SqlCommand("INSERT INTO Amounts( E_Wallet,User_ID) SELECT ...
0
votes
1answer
43 views

Oracle Stored Procedures with ADO NOT .net and VC++

I am migrating a VC++/SQL server app to using Oracle. The database access is implemented using ADO classes, and I can't find a way to go through the cursor that is returned by Oracle. The sproc is ...
0
votes
2answers
70 views

Run complex SQL scripts from memo (multi lines)

I'm executing sql scripts while using ADO and MSSQL server . Under Here you will find an first example of a multi lines sql statement like : use master; go; EXEC sp_detach_db ...
0
votes
0answers
30 views

idispatch error #3105 in mfc while connecting to an sql server instance

i am trying to open a connection to a sql server database in a mfc program and i get idispatch error #3105 exception. here's how im trying to do #import "C:\Program Files\Common ...
-1
votes
2answers
166 views

how to increase speed of loading treeview nodes from a table using delphi

It's simple to load treeview nodes from table using a recursive function, but it takes a long time for huge data. I have a table with these fields: id, title, parentid : that keeps treeview nodes in ...
0
votes
0answers
26 views

namespace schema for urn:uuid:C2F41010-65B3-11d1-A29F-00AA00C14882

The XML Schema Definition for an XML file generated on a microsoft platform imports the namespace uuid:C2F41010-65B3-11d1-A29F-00AA00C14882 . However I am unable to find an XML schema definition for ...
2
votes
1answer
146 views

ADO speed up to open table access

What is the best method to open a table with ADO and Access, for rs.AddNew and rs.Update, based on the speed for writing data? Do I need to use a particular cursor or a particular method? I use an ...
0
votes
1answer
119 views

Multiline parameter in Delphi7 TAdoQuery

With Delphi 7 and SQL Server 2005 I'm trying to pass a multiline parameter (a Stringlist.text) to a TAdoQuery insert script. The insert is successful, but when i take back data from the field, i take ...
1
vote
1answer
122 views

VB6 ADO command is inserting dates in American format instead of English

I have a VB6 legacy program that has been quietly converting Now() Date to American format ie 8/4/2013 is inserted into an Access database as 4 August 2013 but 23/3/2013 is fine. This has been ...
0
votes
1answer
77 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
133 views

Delphi, ADO, MySQL: checking whether an empty set was returned

The version of Delphi is 7. I'm sending a query to a MySQL database. What can be returned is either a set of data rows or simply an empty set. Nothing unusual. But I have no idea how to make a ...
1
vote
1answer
123 views

Information about syntax of ADO recordset filter queries

I spent much time trying to figure out how to extract date part in ado recordset filter expressions connecting to Jet engine working with an mdb file. The problem is that many things mentioned about ...
0
votes
1answer
215 views

asp ADO connection Microsoft VBScript runtime error '800a01a8'

dear all pro programmer here, im totally new in here, and i might dont know how to correctly as a question here.. if i may ask for help, could u pls here here here... im having problem with simple ...
0
votes
1answer
49 views

Oracle Package Function call fails in .NET

I am converting a java application to a .NET application, and need to interface with a Package Function. The function inserts into several tables in a standardized way, and so writing a separate query ...
2
votes
2answers
284 views

How to handle ADO Query with results vs. Query with no results?

I run various SQL statements using MSSQL and ADO. The code sequence looks like this: aADOQuery.Active := False; aADOQuery.SQL.Text := ' MY SQL STATEMENT '; aADOQuery.ExecSQL; aADOQuery.Active := ...
1
vote
1answer
64 views

How to trace ADO calls

Friends, Is there a tool available to trace all sql statements passed between ADO (legacy vb6) (NOT ADO.NET) and database server? Appreciate your help
1
vote
1answer
63 views

ADO Command Execute fails

I am using Execute method on the ADO command object to execute a stored procedure. This call throws an exception when the network adapter is disabled and re-enabled why would the Execute fail in this ...

1 2 3 4 5 24