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

learn more… | top users | synonyms

0
votes
0answers
5 views

query resuslts in dbgrid - dbexpress

im using C++ builder to make a simple database app using MySQL. I use DBExpress component for the connection. The main concept is to use some buttons to execute different queries and show in a ...
1
vote
0answers
56 views

CCSID errors querying a DB2 for IBM i stored procedure through dbExpress

Background I'm using RAD Studio XE2 with dbExpress, trying to retrieve a result set from a stored procedure residing on a DB2 for IBM i (AS/400). Has dbExpress driver for AS/400 I use Peter ...
0
votes
0answers
265 views

Replacement for TSQLQuery.TransactionLevel in Delphi XE2 or later

I am converting a program from Delphi 2005 to Delphi XE2 or XE3. It uses DbExpress with a Firebird database. The program uses TSQLQuery.TransactionLevel to allow it to have overlapping transactions. ...
1
vote
1answer
218 views

dbgrid without client dataset

I have a form with a dbgrid and an sqlquery component. I am trying to fill the dbgrid with the sqlquery. When I do I get the message, "Operation not allowed on Unidirectional dataset." I do NOT want ...
0
votes
0answers
179 views

Embarcadero XE3 - Connect 2 ClientDataSet in Master-detail relationship with a String field as MasterField

I have a simple VCL form with a Master-Detail relatioship between 2 TClientDataSet. This is how my db components are connected The datatypes of components are (first row, from left to right): ...
1
vote
2answers
84 views

How to adding new section in INI file using TJvAppIniFileStorage

I have a database application project written in Delphi XE and connected to MySQL Database using dbExpress. I use JVCL grid Components to show the records from the Dataset. It will be more efficiently ...
1
vote
0answers
135 views

How to handle user defined errors from SQL Server in dbExpress?

I am using dbExpress to access SQL Server 2005/2008 database. I have raised a user defined error message from trigger / stored procedure to my application: raiserror 99999 "MSG" By doing this I am ...
0
votes
0answers
31 views

How to debugging query on ApplyUpdates() procedure

I have a database application written in C++ Builder XE and configured with MySQL database using dbExpress driver. I display the database tables with TBDGrid object. I need to insert new entry ...
0
votes
0answers
27 views

Where the new cell create event was triggered?

I have a DBGrid in C++ Builder XE. I use MySQL database connection via dbExpress. I need to insert new entry into database. When I go to the last record of the grid and click the Down Arrow button on ...
1
vote
2answers
150 views

Using Oracle Driver in TSQLConnection

I am using Delphi XE2 and dbExpress in my application. While developing I come to know that I need to install SQL Native client to use MSSQL as driver in dbExpress connection setup (as client machine ...
0
votes
0answers
206 views

DbExpress: Using New 5.1 libmysql.dll with older MySQL 5.0 server

I would like to find out from fellow developers if there are any pitfalls in using a recent libmysql.dll with a previous MySQL server. I use Delphi with DbExpress to build database applications. My ...
1
vote
2answers
255 views

DBExpress: How to find a primary key field?

I have a TSimpleDataSet based on dinamically created SQL query. I need to know which field is a primary key? SimpleDataSet1.DataSet.SetSchemaInfo(stIndexes, 'myTable' ,''); This code tells me that ...
0
votes
1answer
183 views

Strange behaviour of Delphi database components

I have a problem with the Delphi database components. I tried to add some functionality to a program, but was getting strange problems. I broke it down to a simple sample project and the behaviour is ...
1
vote
0answers
394 views

DBxmys.dll missing error for dbexpress

I'm working on Delphi XE2 and mysql and dbexpress components i have this code StrQu:='select * from mytable'; //my actual query is place here DM.SQLQuery1.SQL.Clear; DM.SQLQuery1.SQL.Add(StrQu); ...
2
votes
1answer
396 views

How to open ClientDataSet (master/detail) in separate thread(different of main thread)

Using: Delphi XE2, DBExpress, Firebird I can't access any VCL control outside the main thread safely, that includes forms, panels, edits, etc and the Timage and Timage descendants. I'm need to open ...
2
votes
1answer
312 views

embedded firebird 2.5 >> DBX Error: Driver could not be properly initialised

i'm try to connect to firebird 2.5 Embedded version(win32) with Delphi XE , I get the error when a click Test Connection any help?
1
vote
0answers
179 views

Why do I get a Key Violation when using dbExpress with AutoInc fields? [closed]

Using MySql 5.5, Xe2 and dbExpress. I have a table with the primary key being auto_increment. When I try to ->Insert(), ->Post(), ->ApplyUpdates(0) into the dataset, I get a "Key ...
2
votes
2answers
185 views

How to change generator value with dbExpress framework whithout using stored procedures?

How to change a generator value with dbExpress framework? I want to change generator value directly with dbExpress, without writing a stored procedure in RDBMS side or etc. Please help me for doing ...
2
votes
1answer
184 views

How to process multi result set queries with dbExpress

I have such an sql statement: UPDATE tbworker SET iState=2 WHERE iState=1; UPDATE tbworker SEt iState=3 WHERE iState=0; And I want to execute this statement in one request to MySQL. Simple sql ...
2
votes
3answers
410 views

'Unknown column in where clause' in Delphi but not MySQL

I'm about ready to rip my hair out and take up poop flinging as a living! I have a MySQL query which runs fine in MySQL SELECT p.ID AS DataID, p.timestamp AS Timestamp, sum(p.Value * ...
1
vote
2answers
329 views

delphi dxExpress MySQL: invalid LAST_INSERT_ID value

I am developing an application in Delphi and want to insert records to Mysql's table. An then I want to know inserted record's identity value. So I write bellow code. On run time , insert is done and ...
0
votes
0answers
272 views

Delphi XE2 DBExpress with SQL Server 2008 R2 not recognising Identity fields

I have a table defined like this on my server CREATE TABLE [dbo].[STOCK]( [st_id] [int] IDENTITY(1,1) NOT NULL, [st_code] [varchar](9) NULL ) In Delphi XE2, I place an ADOConnection on the ...
3
votes
1answer
329 views

Snappy DBExpress SQL Executor method

Given the following {------------------------------------------------------------------------------} function TTestClass.NewQuery(const ASql : String) : TSqlQuery; begin Result := ...
1
vote
1answer
542 views

How can I refresh a TClientDataSet without applying pending updates?

Here is what I'm trying to accomplish: Retrieve 1 record from the database through TSQLDataset's CommandText: SELECT * FROM myTable WHERE ID = 1 Use TClientDataset to modify the record. (1 pending ...
0
votes
1answer
157 views

How to connect two sets of db components using master / detail relationship?

This is how my db components are connected in program: The datatypes of components are (first row, from left to right): TDBGrid, TDataSource, TClientDataSet, TDataSetProvider, TSQLQuery, ...
1
vote
1answer
517 views

Problems returning cursor from stored procedure as ClientDataset

This question directly relates to my Previous Question. I have a need to create a TClientDataSet on a client from an Oracle 11g cursor contained in a package. I am using Delphi XE2 and DBExpress to ...
3
votes
2answers
2k views

DBX Error: Driver could not be properly initialised

I am running Delphi XE3 (Ultimate Edition), MySQL database and this is the error I get when a click Test Connection. As a response, I located the libmysql library in my xampp directory and copied ...
1
vote
1answer
343 views

SQLite option missing from Data Explorer

I am creating an application with Delphi XE3 (Ultimate Edition) that will utilise an embedded SQLite database. I watched various videos in relation to it and I noticed that my Data Explorer did not ...
1
vote
2answers
614 views

How to return Oracle Cursor from stored proc as Client Dataset using Delphi and DBExpress

1st off I am Still a little green to Delphi so this might be a "mundane detail" that's being over looked. [sorry in advance] I have a need to create a TSQLDataset or TClientDataSet from an Oracle 11g ...
1
vote
0answers
376 views

Why does reconnecting to an Oracle database via dbExpress cause an access violation?

I have a Delphi 2006 application running on Windows 7 that connects to an Oracle database via dbExpress using an Oracle 11 client install. After the first connect, I can query data and everything ...
2
votes
1answer
379 views

Delphi TDBXTransaction 'Invalid transaction Object'

1st off I am new to Delphi so this may be a "mundane detail" that's being over looked. [sorry in advance] I am getting an 'Invalid Transaction Object' error when I attempt to run a transaction ...
1
vote
0answers
172 views

How can I get the Winsock error code for a dbExpress connect error?

In case of a connection problem, the dbExpress driver throws a TDBXError but does not include a socket error code. The message is simply: Unable to complete network request to host ...
2
votes
1answer
396 views

Create Trigger from Delphi Code using Native Client Driver

I have an insert trigger that contains dynamic sql stored as a resource for my XE2 project. It also contains placeholders for the database name and table name that are substituted when the Delph code ...
4
votes
2answers
53 views

Is it good practice to use email as id in a mysql DB?

I have read may questions and answers as to simplicity of a mysql DB and good practice. I have a mysql DB, with a 'clients" table. Each client added has an email, which is unique as to emails. Using ...
0
votes
1answer
162 views

Missing Field Errors In TClientDataSet when external dll called from Delphi 7

I have a DLL created in Delphi XE2 that is using DB Express and TClientDataSet to display the results of a join in a DB Grid. There is a simple function to launch/show the form that is exported for ...
4
votes
3answers
1k views

How can I get the table description (fields and types) from Firebird with dbExpress

I have written a tool for displaying database structures using the GetTableNames and GetFieldNames methods of TSQLConnection. How can I get the types of each field name similar to the following list ...
2
votes
0answers
225 views

How to optimize sql-handling executing through dbxmss.dll/sqlncli.dll?

A table defined on my MS SQL Server (2008R2) is defined as follows: create table stagefm.dbo.article (id nvarchar(10)); I send a simple insert statement to my MS SQL Server through dbexpress ...
1
vote
0answers
284 views

Append/Insert detail records (NestedDataSet) in DataSetProvider OnUpdateData

I would like to insert detail records in an OnUpdateData event of the DataSetProvider and have the changes updated to the database along with the master record. What is the best way to achieve this. ...
1
vote
1answer
442 views

How to deploy dbExpress database application without SQL native client 2008 installation?

I am deploying dbExpress database application on a machine which doesn't have SQL Native client installed. I have copied DBXMSS.dll but I am getting an error like DBX Error: Driver could not be ...
0
votes
0answers
354 views

Delphi BCD Field incorrectly displayed if DisplayFormat contains the dot

I'm having a weird problem with an old project that's still being maintained with Delphi 7. I have a TFMTBCDField component, representing Firebird Numeric Field (called GROSSPRICE). It's value gets ...
2
votes
1answer
375 views

How do I make connection pooling work in DBX?

Well, I managed get the delegate driver to set up properly, but connection pooling is still giving me a lot of trouble. From the descriptions given in the documentation, it appears that connection ...
2
votes
3answers
281 views

Ways to get Woll2Woll working with Delphi 7 dbExpress?

My understanding is that the Delphi components in Woll2Woll inherit directly from the BDE, which we are trying to get rid of in order to increase compatibility and stability in Windows 7. But we want ...
0
votes
0answers
124 views

I can't refreshing TDBGrid record set..

I have a Database project mix with RAD Studio C++ Builder XE using dbExpress component. I must sort my table here but I can't refreshing any change/update on my TDBGrid record set. I've been change it ...
5
votes
1answer
250 views

How compatible is Chau Chee Yang's dbExpress and XE2 Enterprise dbExpress for Firebird?

I use Delphi 2010 Professional which did not come with the dbExpress driver for Firebird. If I start using the Firebird dbExpress driver written by Chau Chee Yang and then later upgrade to XE?? ...
1
vote
0answers
263 views

Delphi dbexpress SQL Server DLL versions

Are there any guidelines concerning which versions of the dbExpress DLL files to use with various versions of Delphi and MS SQL Server? Or is it always OK to use the latest versions? I'm thinking in ...
3
votes
1answer
2k views

How to pass a parameter to a query using dbExpress in Delphi

I want to use a dbExpress TSQLQuery component. But i do not know how to write the SQL to add a parameter. I will give an example maybe it will be more clear what my problem is. In a TADOQuery the ...
1
vote
1answer
206 views

SQL Component Connection issue in IDE

Good evening guys. I'm currently trying to get started on development of a project to make my own life a little easier. Essentially, i want to connect to a MySQL database running on a remote server, ...
1
vote
1answer
726 views

Handling DbExpress Sql Error Code 245

I am trying to build a scheduler application for my semestre exam, and I am interogating the database if a teacher has classes in a certain week, certain day and a certain hour. Is there a way to ...
1
vote
0answers
138 views

Delphi DBExpress error with turkish collation

I lately found a problem with a delphi program created with Delphi 2007 and dbExpress components. This program is used in many countries with a collation set to the local language so people have a ...
0
votes
3answers
379 views

Add a blank row, then populate using a dialog in Delphi/DataSnap/dbExpress

I'm planning to create a dialog that would create a blank record in a Firebird database, then populate the fields with values taken from text edit boxes in that dialog. I am using the following: ...

1 2 3 4