Tagged Questions

dbExpress is Embarcadero's data driver architecture replacing the deprecated Borland's BDE.

learn more… | top users | synonyms

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 ...
6
votes
2answers
1k views

Delphi 2009 and Informix dbExpress problem with Windows 2003

I have simple application that uses dbExpress to connect Informix database. If I compile it with TurboDelphi it works on both WinXP and Win2003. When I use new Deplhi 2009 my app works ok on WinXP but ...
5
votes
1answer
449 views

Delphi 2010 and Dbexpress deploy

How on Earth to deploy a Delphi 2009 /2010 app that connects to a remote mysql using dbexpress? What files to include? Thanks
5
votes
1answer
591 views

Should I use ApplyUpdates(0) or ApplyUpdates(-1)?

The Delphi XE dbExpress tutorial in the online documentation uses ApplyUpdates(-1): // Client data set has provider do update. ClientDataSet1.ApplyUpdates(-1); Some online sources however say ...
4
votes
1answer
149 views

Statically link firebird driver for dbexpress

Is it possible to deploy zero-dll executable that connects to Firebird using dbExprss? If so, how? Cause I've tried to include DBXFirebird but the executable always needs dbxfb.dll. Thank ...
4
votes
2answers
278 views

How does a .NET program behave differently when run with and without debugging in Visual Studio?

I'm getting an Access Violation in DBEXPSDA40.DLL (Dev Art MS SQL Server dbexpress driver) on closing down my .NET application. My application (VB.NET) calls a Delphi written COM Server which uses ...
4
votes
3answers
4k views

dbGo or dbExpress for Delphi 2010 with Microsoft SQL Server

I am migrating to Delphi 2010 and I am using Microsoft SQL 2000 (Planning on upgrading to SQL2008). I have been using BDE all along and wondering if I should use dbGo (ADO) or dbExpress with my future ...
4
votes
4answers
1k views

Equivalent to TUpdateSQL in Delphi 2010 dbExpress?

I am planning to migrate a Delphi 6 BDE application to Delphi 2010... First of all, do I have to move away from BDE? (I will but I prefer to do this in stages if possible) Second, is dbExpress the ...
4
votes
3answers
3k views

How can I detect if ApplyUpdates will Insert or Update data?

In the AfterPost event handler for a ClientDataSet, I need the information if the ApplyUpdates function for the current record will do an update or an insert. The AfterPost event will be executed for ...
4
votes
3answers
919 views

How long does a TDataset bookmark remain valid?

I have code like below in a project I'm working. procedure TForm.EditBtnClick(Sender:TObject); begin // Mark is form variable. It's private Mark = cdsMain.GetBookmark; // blabalbal . . ...
4
votes
1answer
1k views

Monitor SQL queries executed by a Delphi application

I'd like to monitor SQL queries executed by my application while it runs. I'm using a dbExpress connection to an Oracle 11g database under Delphi 2007. This used to be possible under the BDE with ...
4
votes
6answers
1k views

Is it possible to create databases programmatically using DBX?

Looks like the TSQLConnection only connects to existing databases, and I could not find another component that allows me to send commands to the database server. I'm using Delphi 2009 with Firebird ...
3
votes
0answers
88 views

Is there a trick to using TSQLMonitor with a TSQLConnection that uses the new ODBC dbExpress driver?

I have been testing the new ODBC dbExpress driver that ships with Delphi XE2, and have noticed that the TSQLMonitor does not seem to work. Thinking that I may have configured the component ...
3
votes
2answers
205 views

Delphi7, dbExpress and Master Detail relationship

I'm new to Delphi. I got two TSQLTables (say A and B) linked to two TClientDataSets (say cdsA and cdsB respectively) by two TDataSetProviders, two DataSources (dsA and dsB) complete the scenario. ...
3
votes
1answer
112 views

How to copy a database's table to another database's corresponding one using TSQLConnection/dbExpress?

I'm using C++ Builder (or Delphi 2007 and XE2) using DBExpress. I connected two databases one for firebird(my local hard disk) one for MySQL(on Web) using TSQLConnection. Then, my question is ... how ...
3
votes
1answer
203 views

How do I keep my program responsive to user input while executing a DBExpress query?

ibdac query ( http://www.devart.com/ibdac/components.html ) has a function executing where I can write something like: while MyQuery.Executing do begin application.ProcessMessages; Sleep(1); ...
3
votes
1answer
558 views

Delphi XE2 dbExpress and Firebird 2.5

does the new XE2 dbExpress still have problem using Boolean fields ?
3
votes
1answer
224 views

Connecting to MySQL via SSL, using DBExpress

I want to connect to a MySQL server via SSL. More specifically, I want to do that with DbExpress. I've used SSL to MySQL via ZeosLib in the past. That worked great, but Zeos doesn't let me run stored ...
3
votes
1answer
225 views

Can TCustomClientDataset apply updates in a batch mode?

I've got a DB Express TSimpleDataset connected to a Firebird database. I've just added several thousand rows of data to the dataset, and now it's time to call ApplyUpdates. Unfortunately, this ...
3
votes
1answer
455 views

Auto-truncate assigned string to the length of the field?

I met a problem when migrating dbexpress driver from 10 to 11. I have the following codes to execute an update statement in SQL Server: sql.add('UPDATE mytable SET myfield=:AFIELD'); ...
3
votes
9answers
1k views

Delphi dbExpress and Interbase: UTF8 migration steps and risks?

Currently, our database uses Win1252 as the only character encoding. We will have to support Unicode in the database tables soon, which means we have to perform this migration for four databases and ...
3
votes
4answers
715 views

dbExpress driver for Microsoft Access

being a dbExpress newbie I wonder if there is a dbExpress driver for Microsoft Access?
3
votes
2answers
997 views

List of free dbexpress drivers for Delphi

Anyone knows/has a comprehensive list of free open source dbexpress drivers?
3
votes
1answer
845 views

Threading DbExpress queries

I have only done "GUI" database access in Delphi with DbExpress components, but now I'd like to execute one query on background. I read some where that TSQLConnection is not thread safe and I have to ...
2
votes
1answer
62 views

How do I set an attribute on an ODBC connection via DBExpress?

Justification that you might as well skip reading but is included to filter out people telling me not to do something that I'm not sure of in the first place. I'm trying to debug some multithreaded ...
2
votes
0answers
131 views

dbExpress and SQL Server 2008 slow

I recently migrated from Delphi 7 with SQL Server 2000 to Delphi 2010 with SQL Server 2008. I am using dbExpress. After installing the new version I have found that the on sites that have a lot of ...
2
votes
2answers
121 views

dbExpress TSQLConnection param problems

I am new to dbexpress and I cannot figure out how to set the TSQLConnection parm for the SQL Host name at runtime. When I install my program on a client system the TSQLConnectionHost is still reading ...
2
votes
2answers
158 views

Why does CREATE TABLE appear to succeed but then fail under DBX?

I've got a DBExpress connection connected to a Firebird database, running Firebird Embedded. Everything works fine so far, but something very strange is going on. I've got a data module that ...
2
votes
4answers
280 views

What is the best way to use Web database using Delphi?

all. I'm using DBExpress and C++ Builder(Delphi) 2007 and MySQL, firebird , ... I'd like to make win 32 application which use Database(located on my web server). I tried using DBExpress ...
2
votes
2answers
306 views

dbExpress vs native Drivers

I was reading Holgerwa's question and I have a question. Is there any significant performance improvement by changing from dbExpress to other driver specific? Can we use dbExpress and still use ...
2
votes
4answers
2k views

Delphi XE2 dbExpress MySQL connection

No matter what I've tried, I couldn't make XE2 to connect to a MySQL with dbExpress. The problem has actually many faces. First, target MySQL is either 32- or 64-bits, which affects the libmysql.dll ...
2
votes
1answer
181 views

TSQLConnection.GetFieldNames not working on 64-bit machine

I have Delphi 2005 code that I use to retrieve database table field names. It works with no problems on 32-bit machines (Windows XP, Windows Vista, Windows 7). However it does not return any field ...
2
votes
1answer
136 views

DBXPool Corrupts Memory on Failure to Connect

When DBXPool is used for the DelegateConnection on a TSQLConnection, if SQLServer is unavailable when you call the TSQLConnection.Open method, it will timeout the first time. But if you subsequently ...
2
votes
1answer
180 views

Only One field shown from SQL

I have a problem trying to get fields from a SQL statement that retuns 2 fields If I run the query in phpMyAdmin, it returns all the fields correctly. That means SQL statement is correct If I run ...
2
votes
3answers
418 views

DbExpress use in delphi

I am new in delphi 2007. I need to connect with SQL Server and update , insert and delete DB values from my local database(SQLServer) through DBExpress. Anyone can help step to step guide from scratch ...
2
votes
2answers
452 views

dbExpress does not read the milliseconds part of TimeStamp fields

Recently some Delphi / InterBase applications display "Record not found or changed by another user" They use the default TSQLQuery/TClientDataSet (or TSimpleDataSet) components of dbExpress. We ...
2
votes
3answers
498 views

Encode Time Issue in Delphi 2010

When we use EncodeTime function EncodeTime(wHour, wMinute, wSecond, wMilliseconds) it is not assigning the millisec value to the Result. We are using below to encode Date and Time Result := ...
2
votes
0answers
447 views

BCB: from BDE to dbexpress, BCD exception

I'm having some problem about TSQLStoredProcedure. Here is the code: storedproc->ParamByName("A")->AsInteger = adataset->FieldByName("AA")->AsInteger; storedproc->ExecProc(); param ...
2
votes
2answers
262 views

String Truncation on Transfer to ClientDataset

I'm using Firebird 2.1, DBExpress Driver from DevArt and Delphi 2010. Some of my reports that used to work with Delphi 2006 stopped working and produced an error message indicating that "arithmetic ...
2
votes
1answer
2k views

sql server 2005 delphi 2010 dbexpress connection

Trying to connect to sql server 2005 with delphi 2010 gives me the following error after configuring the data explorer: 'Borland.data.TDBXError: DBX Error: Driver could not be properly initialized. ...
2
votes
1answer
872 views

Connecting to SQL Server database via Web service

1.) I can create a simple application which has one routine called function ConnectToDB: Boolean and run it from my virtual directory (wwwroot/cgi-bin) and it connects and reports back connected . ...
2
votes
1answer
884 views

How to mark all TClientDataSet records as Inserted?

I have a complex transaction that saves data from multiple TClientDataSets in database. One of those ClientDataSets always append data to underlaying table, eg. generate INSERT statements, regardless ...
2
votes
4answers
1k views

How to get the millisecond value from a Timestamp field in firebird with Delphi 2007

I have a Firebird database (running on server version 2.1.3) and am connecting to it with Delphi 2007 using the DBExpress objects (using the Interbase driver) One of my tables in the database looks ...
2
votes
2answers
1k views

How can I connect to an Oracle database as SYSDBA using dbExpress?

I have a Delphi application that connects to an oracle database. When I try to log in as SYSDBA, I get the error: ORA-28009: connection as SYS should be as SYSDBA or SYSOPER When I try to log in ...
2
votes
7answers
2k views

Getting a Field List from a DBExpress TSQLQuery

I am having a problem getting a list of fields from a query defined at run time by the users of my program. I let my users enter a SQL query into a memo control and then I want to let them go through ...
1
vote
0answers
84 views

Error retrieving TimeStamp data with dbExpress in Delphi XE2

I am retrieving TIMESTAMP data from an SQL Anywhere database via Delphi XE2, dbExpress and ODBC. Reading the Data throws an EConvertError saying "Ungültiges Argument zum Kodieren der Zeit" ("Invalid ...
1
vote
0answers
109 views

Remote access via DataSnap to dynamic created TSQLConnection

Delphi XE2 provides with DataSnap access to server-side connections from a client. The TSQLConnection driver "datasnap" has a property "ServerConnection", to specify a function that returns a ...
1
vote
2answers
443 views

Questions about database programming with Delphi XE2

I know and I've heard about there are many ways to connect to a dabatase server in Delphi (XE2): sockets, datasnap, webservices, remote data module (¿?), dbExpress, and other thrid-party like UniDAC. ...
1
vote
2answers
188 views

How to abstract my business model using dbExpress and Delphi (maybe DataSnap as well)?

If my question isn't clear, please help me improve it with comments. I'm new to Delphi and dbExpress and I'm just getting acquaintance with TSQLDataset, TDataSetProvider, TClientDataSet and ...
1
vote
2answers
194 views

dbExpress design question

Does anybody know (or care to make a suppostion as to) why TSqlDataset has a commandtext property (string) whereas TSqlQuery has a sql property (tstrings)? Consider the sql statement select id, ...

1 2