Tagged Questions
ActiveX Data Objects
9
votes
1answer
264 views
Connect to Sun LDAP with ADO
I want to connect (and get user's group) to a Sun LDAP server with a Delphi program.
I think ADSI works only with Microsoft LDAP. I try it with ADO, but I can't connect.
Can someone show some code ...
8
votes
1answer
131 views
What is “*;1” in TADOStoredProc.ProcedureName value in Delphi?
You may specify TADOStoredProc.ProcedureName in Delphi with the following value:
MSSQLProcedureName;1
But what does meen ";1" in this value?
Thanks for the help!
8
votes
3answers
2k views
View output of 'print' statements using ADOConnection in Delphi
Some of my MS SQL stored procedures produce messages using the 'print' command. In my Delphi 2007 application, which connects to MS SQL using TADOConnection, how can I view the output of those ...
7
votes
3answers
170 views
ADO SQL type cast Float to String (Excel)
How do I use the CAST in ADO to convert Float values to String?
I tried
SELECT CAST([Field] AS VARCHAR(20)) FROM ...
and
SELECT CAST([Field] AS STRING) FROM ...
and always get an OLE Exception ...
7
votes
5answers
7k views
Using SQLITE with VB6
I am currently using an MSAccess mdb file for a redistributable app.
A while ago I found out about SQLite, as an alternative to my solution, but the binaries they provide do not offer the ...
6
votes
2answers
1k views
Getting VB6 ADO application to work in Windows 7
I have inheritted several old VB6 applications that currently cannot be rewritten in .NET. These old applications all use ADO, and compile fine on my XP machine. Since switching to a Windows 7 ...
6
votes
6answers
531 views
Multiple rows with a single INSERT in SQLServer 2008
I am testing the speed of inserting multiple rows with a single INSERT statement.
For example:
INSERT INTO [MyTable] VALUES (5, 'dog'), (6, 'cat'), (3, 'fish)
This is very fast until I pass 50 rows ...
6
votes
8answers
1k views
Database connectivity Delphi
I'm using delphi for years, but never for database stuff, but recently started researching and testing.
I must say, i'm impressed, most of things happens automatically, i'm used to write by hand in ...
5
votes
6answers
102 views
Delphi with SQL Server: OLEDB vs. Native Client drivers
We have a large software system which has been getting slower and slower. In attempt to improve the performance, we discovered that SQL Native Client is supposed to be faster. So I put together a ...
5
votes
1answer
1k views
Connection string syntax for Classic ADO / ODBC / Oracle 10g EZConnect
I'm trying to connect various VBA projects to an Oracle 10g back end using ADO (2.8) and no TNS. After various attempts, we've decided that the simplest series of steps for a clean installation ...
5
votes
3answers
1k views
Multithreaded (TThread) Delphi application will not terminate
I have written an application (using Delphi 2009) that allows a user to select a series of queries which can be run across a number of different systems. In order to allow queries to be run ...
5
votes
6answers
1k views
ADO or DBX using Delphi
Which is better (and for what reasons) to use to connect to MS SQL, Oracle or Firebird from a Delphi Win32 application -- ADO or DBX (Database Express)?
Both allow you to connect to the major ...
5
votes
3answers
2k views
Problem Inserting data into MS Access database using ADO via Python
[Edit 2: More information and debugging in answer below...]
I'm writing a python script to export MS Access databases into a series of text files to allow for more meaningful version control (I know ...
5
votes
11answers
2k views
Linq 2 SQL or Linq Entities
I am starting to design a new application and what I am wondering is peoples opinions on Linq2SQL or Linq2Entities and what they feel is the better technology for rapid development.
I am also doing ...
4
votes
1answer
100 views
Encrypting SQLite database in Delphi OLEDB
How to use encryption to SQLite DB in Delphi if i'm using SQLite ODBC Driver.
I must use ADO components for data access.
4
votes
4answers
167 views
What is difference between ADOTable and ClientDataSet
What is the difference between ADOTable and ClientDataSet?
Both components are capable of performing Batch Update, why add the extra overhead of having 2 additional components like ClientDataSet and ...
4
votes
2answers
105 views
ADODataSet deleting from joined table
I have a Delphi app where I display a list of games that have been played from a query like this:
select g.*, gt.id, gt.descr
from GAMES g
inner join game_types gt on gt.id = g.game_type
order by ...
4
votes
1answer
188 views
Get the list of ODBC data source names programatically using Delphi
I saw several examples where the list of the source names were took from registry (HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources). Is there any other way to get the list of ODBC data ...
4
votes
3answers
160 views
Is there any way to remove automatically all leading and trailing spaces in text fields
In a Delphi application which uses TADODataSet components to access to an Access database, there is any way to delete leading and trailing spaces from text fields when record is written to disk? or ...
4
votes
1answer
136 views
Upgrade websnap app to delphi 2005 - CoInitialize error
We have a current product written in Delphi 6 websnap, which I'm attempting to upgrade to run under delphi 2005.
It uses ADO, and the error on running is "CoInitialize has not been called".
The only ...
4
votes
1answer
218 views
SQL: Showing a Link Option Using Conditions
I'm trying to make a menu option available to users depending on conditions using 2 tables.
We have a directory website for different towns and each town administrator is able to add subcategories to ...
4
votes
3answers
1k views
ADO components CommandTimeout
I have a problem with settings of the query execution timeout with TADOQuery, TADOCommand or TADODataSet (I've tried it with each one). I have a tiny application, which connects to the database and ...
4
votes
4answers
369 views
Compatible DDL (CREATE TABLE) across different SQL databases?
I'm working on a desktop application that must support (currently) MS Access and SQL Server back ends. The application is under constant development and changes are frequently being made to the ...
4
votes
2answers
420 views
4
votes
2answers
400 views
Excel-Access ADO Update Values
I am trying to update a table in Access from the values in excel, however every time i run the code it creates new rows instead of updating the already existing ones, any ideas why? I am new to ADO, ...
4
votes
1answer
533 views
Excel - VBA - Save Data to Access Database
I'm working on excel with VBA and access and i need my system to save its data to an Access database and whenever any new records added, deleted or modified the database should update.
I would like ...
4
votes
1answer
639 views
How to open SQL Compact database read only
There is a SQL Compact v3.1 database that I want to quickly read. I'm doing this in python so I don't have access to managed code.
I've noticed that if I use adodbapi the database file actually gets ...
4
votes
2answers
1k views
how do i retrieve data from SQLite to VB6?
i am using SQLite3 ODBC Driver as my connection string,
Dim conn As ADODB.Connection
Set conn = New ADODB.Connection
Dim rs As New ADODB.Recordset
Set conn = New ADODB.Connection
...
4
votes
0answers
369 views
Access 2007 upgrade DAO references conflict
I am updating an Access 97 DB w/ VBA code to Access 2007. The VBA code uses DAO objects that Access 2007 references when I converted the db files (first from 97 to 2002, then to 2007). My problem ...
4
votes
3answers
171 views
COM: How to handle a specific exception?
i'm talking to a COM object (Microsoft ADO Recordset object). In a certain case the recordset will return a failed (i.e. negative) HRESULT, with the message:
Item cannot be found in the collection
...
4
votes
2answers
200 views
Is it possible to submit data into a SQL database, wait for that to finish, and then return the ID generated from SQL, using Classic ASP?
I have an ASP form that needs to submit data to two different systems. First the data needs to go into an MS SQL database, which will get an ID. I then need to submit all that form data to an external ...
4
votes
3answers
902 views
Classic ADO and Table-Valued Parameters in Stored Procedure
Is there some way to pass a table-valued parameter to a stored procedure in SQL Server via classic ADO?
4
votes
2answers
1k views
Why does ADO Next record processing slow down in Delphi?
I had a Delphi 4 program that I developed many years ago that used Opus DirectAccess to sequentially search through a Microsoft Access database and retrieve desired records. Delphi 4 did not have ADO, ...
4
votes
3answers
3k views
A better way of passing parameters to a TADOStoredProc (Delphi)
I am needing to convert a large amount of SQL queries into stored procedures. I have some code that updates about 20 or 30 values at one time in one Delphi procedure. I can handle creating a stored ...
4
votes
3answers
6k views
BDE vs ADO in Delphi
Please note the Edit below for a lot more information, and a possible solution
We recently modified a large Delphi application to use ADO connections and queries instead of BDE connections and ...
4
votes
2answers
3k views
How to get the next identity number used in SQL 2005 and ASP?
I was previously getting the next available autonumber used in Access by doing a simple query like so:
SELECT RecordNumber, Info FROM myTABLE WHERE 0=1
This way I could create a variable to hold ...
4
votes
5answers
8k views
How to check if an OLEDB driver is installed on the system?
How can I make sure that a certain OLEDB driver is installed when I start my application? I use ADO from Delphi and would like to display a descriptive error message if the driver is missing. The ...
3
votes
1answer
143 views
Using a datetime parameter with ADO (ODBC) looses Time part
I stumbled onto this problem yesterday when I was busy writing some unit tests using SQLLite. My environment is Windows7/Delphi XE.
Using TADOQuery in conjunction with a TDateTime parameter results ...
3
votes
3answers
143 views
DBGrid with read ahead capability using ADO
I'm working with ADO connecting to SQL Server 2005.
My TADODataSet selects 1 million records. using a TDBGrid and setting the TADODataSet.CursorLocation to clUseServer works. but the TDBGrid chokes!
...
3
votes
1answer
84 views
Sybase 12.5-BDE-ADO “where myColumn=null” failure
We have an old application that reads in SQL text files and sends them to Sybase ASE 12.51. Our legacy app was written in Delphi 5 and is using the BDE TQuery component for this process and accessing ...
3
votes
2answers
50 views
Why do some connections take very long, and others work quickly?
I have a web page that connects to a SQL Server 2008 instance, attempting to perform two stored procedures in sequence. The first one completes successfully, and then the values from the first are ...
3
votes
2answers
127 views
Linq, lambda expression
I have a database with a "many to many"-relationship. And I'm trying with lambda and linq to remove an entry in the Many-to-many table.
I have one Ado-entity called Book and another called Author.
...
3
votes
1answer
44 views
Object doesn't support this property or method: 'rsSQL.Execute'
heres my ASP:
sql="select * from empPac where empIdent='" & empIdent & "' and catalogIdent=" & catItem
Set rsSQL = Server.CreateObject ("ADODB.Recordset")
rsSQL.Open sql,strConnect
...
3
votes
5answers
251 views
Delphi map database table as class
A friend of mine asked me how he can at runtime to create a class to 'map' a database table. He is using ADO to connect to the database.
My answer was that he can fill an ADOQuery with a 'select ...
3
votes
2answers
117 views
Why is calling a stored procedure always preceded by a call to sp_sproc_columns?
I've inherited a classic asp site, which uses ADO Db Command objects for stored procedures.
One of the things I've noticed, in the sql profiler, is that for every call to a stored procedure there is ...
3
votes
1answer
244 views
mssql_execute failing with, “stored procedure execution failed”
I am currently connecting sucessfully to an SQL database sat on a Windows 2008 using the following query;
$result = mssql_query("EXEC dbo.stored_procedure_name @param_level = 2");
I am basing my ...
3
votes
2answers
93 views
How could i limit and slow down my local SQL Express for test purpose?
I'm making a query in c# with ADO to select one record from Microsoft SQL Express database. for some test purpose I need to make a delay about 300ms with in SQL Express so that I could simulate my ...
3
votes
2answers
293 views
Using ADODataset component to open an Excel Spreadsheet
I'm using ADOdataset component to view an Excel Spreadsheet on a Delphi form.
The component requires that the CommandText property be set to the name of a spreadsheet in the workbook being opened.
...
3
votes
2answers
141 views
VB6 syntax problem, “no current record” error
I am writing an app in vb6 using sql server 2005. here is my current code.
Dim Sqlstring As String
Dim rstCurrentTicket As Recordset
Sqlstring = "Select SubmiterName, LastViewDate, Department, ...
3
votes
2answers
144 views
Calculated column in wrong position when using `SELECT *`
Consider this query that uses SELECT * and 'appends' a calculated column:
SELECT *,
IIF(TRUE, 1, 0) AS calculated_col
FROM Orders;
I would expect calculated_col to be the rightmost column ...