Questions tagged [bde]

BDE is the abbreviation for Borland Database Engine.

Borland Database Engine (BDE) is a legacy Windows-based database engine providing database connectivity for Delphi and C++ Builder via SQL Links and ODBC.

It was replaced in 2000 by dbExpress.

Resources

173 questions
2
votes
1 answer

Paradox Database with BDE - Forcing changes to disk while database/table open

We have a Paradox Database table that we want to mirror across the network using something like DSynchronize. The issue that I am seeing is that Paradox through the BDE (Borland Database Engine) does not update the file system until the table is…
Nevar
  • 61
  • 1
  • 5
2
votes
3 answers

Delphi BDE PostgreSQL query execution (syntax error)

I am using BDS 2006 with PostgreSQL for my application. I have the following code consisting of the query for finding the Primary key values inside my Table. Query.SQL.Clear; Query.SQL.Add('SELECT…
Shirish11
  • 1,517
  • 2
  • 16
  • 37
2
votes
1 answer

EDBEngineError 'table is readonly'

I have 3 TQueries: qy_master, qy_detail, qy_detail2, master of qy_detail2 is qy_detail, master of qy_detail is qy_Master, all queries have corresponding data-sources, I placed queries in datamodule, when datamodule create I activate those…
bejarun
  • 155
  • 2
  • 11
2
votes
1 answer

DBRichEdit RTF encoding lost transitioning application from BDE to DBX

My team is converting a BDE application to DBX using D2007. A TTable has been replaced with a TSQLDataSet/TDataSetProvider/TClientDataSet combination. A TStringField has been used to access the RTF in the Oracle varchar field via a TDBRichedit…
Stewart
  • 149
  • 1
  • 11
2
votes
2 answers

What standard does BDE use for .sch schema files?

I was wondering - is there a standard (like a RFC) for the .sch schema file format the BDE uses? The format is described here and here. It seems based on this Microsoft format, but it's not quite the same. Example 1 - VARYING format…
PatrickvL
  • 3,996
  • 2
  • 26
  • 45
2
votes
1 answer

BDE dbidorestructure returns empty table

In my (Delphi Sydney, Win 10) application I use BDE (yes even today). I want to modify its existed (Paradox) tables when I change/alter/drop fields. I found a freeware component (TFieldUpdate v1.1, by Nathanial Woolls) that works except that it…
jim
  • 69
  • 6
2
votes
1 answer

BDE and Slovak language. Is there any driver for it?

We have an application built in Delphi 5 which uses Paradox Tables and BDEADMIN. One of our clients needs to use Slovakian Characters like ž I've been googling all over and testing but I can't find the right language drivers in BDEADMIN to work…
Federico Giust
  • 1,685
  • 4
  • 19
  • 43
2
votes
3 answers

BDE, Windows 7 and UAC

I have a very old application written in delphi 5 running in some customers which uses the BDE. Now some users with Windows Vista and 7, had experimented some problems with the multiuser access. i' think which these problems are related to the…
Salvador
  • 15,053
  • 31
  • 128
  • 232
2
votes
1 answer

BDE to FireDAC: pack table, regenerate index

An old program of ours uses dBase tables and an .MDX index - other systems use these tables too, so we're stuck with them. We wish to replace BDE with FireDAC in our software. It seems that BDE methods DbiRegenIndex and DbiPackTable (regenerate…
Arjan
  • 31
  • 6
2
votes
0 answers

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 "A" is declared integer in the form (and it's 29 in the program).…
Francesco
  • 1,476
  • 4
  • 39
  • 64
2
votes
0 answers

Borland Database engine on Windows 10 (1703)

Since Win10pro (1606) Borland Database Engine worked fine. I installed Win10pro build 1703 and when i run Database Desktop, it open saying that private and working dirs are invalid or undefined (administrator mode) and then, clicking OK, just…
JimPapas
  • 555
  • 2
  • 6
  • 21
2
votes
2 answers

ORA-01426: numeric overflow exception when executing stored procedure

I ported a Delphi 6 application to Delphi 2007 and it uses BDE to connect to an Oracle 9i database. I am getting an ORA-01426: numeric overflow exception When I execute a stored procedure. This happens randomly and if I re-run the stored procedure…
user9977
  • 454
  • 5
  • 5
2
votes
2 answers

Is there no SERVER NAME Parameter for BDE in Delphi 2010?

We are migrating a pretty big application crafted in Delphi 5 (still getting customers using this old versions) that uses BDE to connect to a SQL Server. The decided path to migrating is first Delphi 5 to Delphi 2010, then BDE to dbExpress (or dbGO,…
SalvadorGomez
  • 518
  • 4
  • 15
2
votes
2 answers

Can I use Delphi to write to BDE and PHP to read from it?

I strongly prefer not to use additional 3rd party components, libraries or DLLs (at least in v1.0), unless there is absolutely no other solution. Question: (how) can I use Delphi to progrtiamatically crate a BDE database and write to it, then use…
Mawg says reinstate Monica
  • 34,839
  • 92
  • 281
  • 509
2
votes
1 answer

ADO Error exception handling?

I just switched from using the BDE to ADO by replacing the Tables and Queries to its equivalent in ADO components. I'm always execute the query inside try...catch like this: //Fdm is Data Module //TEndOfDay is TTable //QEndOfDay is…
Ediz Asker
  • 51
  • 1
  • 7
1 2
3
11 12