BDE is the abbreviation for Borland Database Engine.

learn more… | top users | synonyms

0
votes
1answer
92 views

Opening Paradox database; 'PDOXUSRS.NET' workaround?

I am writing a new version of an application that has been written by someone else. The old version uses a Paradox database while my new version uses an SQLite database, which is already implemented ...
0
votes
1answer
94 views

Get Returning Clause' Output in Delphi

Previously I asked a Question, I got the right answer. It is working fine in PL/SQL Window. But when I want to do the same thing to achieve through my Delphi Code, I am not able to achieve the same. ...
0
votes
1answer
30 views

Reading dBase with BDE makes too many file handles

I want to read dbase files from a remote pc. The problem is this makes very many file handles. This is a code example that does this. I do it in a thread, because I want to read more files parallel ...
2
votes
1answer
209 views

How to use TSession Class of BDE in Delphi?

I am using mutiple connection using ODBC. In whole project I am using the same connection, but create, use and destory TQuery object. Now I am going to use connection in threads and came to know ...
0
votes
3answers
135 views

Pass parameter by “in” Delphi [closed]

I need to pass a parameter to a SQL in Delphi using BDE to be using an "in", the example below: select * from customers where id in (:p_in) I need to pass: p_in a list of customers. But ...
0
votes
2answers
83 views

Operation must be an updateable query - VB Script, Paradox Table

I'm using a Win XP box with BDE Administrator and Access 2007 installed. I'm able to open and perform select queries on existing Paradox tables without problem but have some very strange behavior when ...
0
votes
1answer
157 views

Copy record from one Table to another not working

I am using the BDE and flat Tables. I have two identical Tables, tblOne and tblTwo I am trying to copy the data from one table to the other. Not the entire DB, just one specific Record using this: ...
0
votes
0answers
88 views

Edatabase error : Record not found while locating TTable ,

my application, i have used TTable.locate option in many places to move the cursor, but in only one place it will raise "EDatabaseerror : Record Not Found', aslo it will raise for particular records ...
1
vote
1answer
171 views

Paradox error on CreateTable

I was creating table during execution, however at the creation of the table, (see my code) procedure CreateTempTable(pDataBaseName,pSessionName:String); begin //-------create "TempTable" ...
1
vote
1answer
210 views

String Data Length Mismatch delphi+sql server 2008

In one of my application am using Delphi 7, Sql server 2008 R2, BDE, I connect database using bde via odbc using Sql server native client driver. Insert always works but some places edit failled, ...
0
votes
0answers
152 views

cannot load an IDAPI service library. File GDS32.DDL

I have a InterBase client installed on a terminal server (64bit). With the Admin account is everything ok and the application work. With a restricted account i've got the error message ... "Can not ...
0
votes
1answer
319 views

Delphi 7 BDE on SQL Server 2012

Searched the net in and out and could not find proper info on that, we have a legacy setup that uses Delphi 7 and BDE to connect to SQL Server 2005. Now we are planning to migrate to SQL Server 2012, ...
0
votes
1answer
192 views

Evaluating the performance of Absolute Database and comparing it to BDE [closed]

I'm in the process of dumping BDE as my database platform and evaluating similar alternatives. In this regard, after reading positive reviews about Absolute Database, i conducted some comparisons ...
-1
votes
1answer
205 views

CreateBlobStream, Stream Size

My Code: stream := qry.CreateBlobStream(qry.FieldByName('aaa'), bmRead); The record in aaa is actually bigger than the stream's size,which is always 32786.Why?
11
votes
5answers
299 views

How to union data from different databases?

I came across the necessity to union two selects from different databases, namely paradox (in bde) and ms sql server. Currently bde (through TQuery) is used only in this part of the programm (i.e. ...
0
votes
1answer
394 views

Delphi 7 : How to search BDE database field for certain keywords [closed]

I am very new to Delphi and created a simple BDE database with the following fields: Entry number, System, Error, Solution. I want to be able to search the 'Error' field for any keyword(s) and all the ...
0
votes
0answers
188 views

delphi tdatabase parameters for firebird confusion

I've created a Data Source through the control panel successfully and used it with ttable and tquery and TDBGrid, now I want to learn how to use TDatabase to connect to my firebird db, I have selected ...
1
vote
0answers
302 views

Delphi BDE example needed [closed]

I'm having a hard time locating a simple example of how to use Delphi+BDE for database access, the company I am joining uses this.
3
votes
3answers
2k views

Delphi connection to SQL Server - 'futureproof' replacement for BDE?

we have an applcation of some size (about 1MLOC) that were started back in the days when BDE was just about to be deprecated. Nowadays we only use it to connect to SQL Server using ODBC. It has worked ...
4
votes
1answer
955 views

Insert TDateTime field to SQL 2008 DB using Native Client 10

We have a legacy application that is written in Delphi 2007 and is still using the BDE (yes it needs to be switched to ADO but with over 500K lines, that's a BIG job). It connects to an SQL Server ...
0
votes
1answer
1k views

Delphi BDE Issue $2501 [duplicate]

Possible Duplicate: BDE initialization failure (error $2501) on Vista These days our client keep encountering the BDE issue with error code $2501 when trying to open two instances of ...
0
votes
0answers
125 views

How to load .db file on C++ Builder XE

I have a lot of dBase (.db) files on my project. I need to load it values in the TDBGrid Component on the Form by programmatically using C++ Builder XE.. Can anyone describe to me how to do that? ...
4
votes
1answer
219 views

Is there a limit to the number of parameters in a TStoredProc?

Is there limit to either the number of params or to the overall size of a params in a TStoredProc ExecProc call? Currently running a system that is still using the BDE to connect to Oracle and a ...
2
votes
3answers
286 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
2answers
2k views

“Insufficient Memory” when running query in Delphi 7 using BDE Paradox 7

When I run the program which is connect to a paradox database (*.db), it show error message something like project myprogram.exe raised exception class EDBEngineError with message Insufficient memory ...
0
votes
1answer
470 views

Export Delphi BDE Paradox *.db Query Result to a text file?

How to export Delphi BDE Paradox *.db Query Result to a text file? e.g. I use SQL Explorer or Database Dekstop in Borland Delphi and the query like : SELECT * FROM mst_employee; and I want the ...
0
votes
1answer
172 views

Working with multiple database types

I'm currently building a program that primarily uses ABSDatabase, however I am trying to return the alias list from a BDE configuration, I'm currently using the following code: ...
1
vote
3answers
1k views

BDE Installation: there is not enough space on drive c. install to this location anyway

I am trying to install BDE Engine by executing the following command line from my installation program as follows. ShellExecute(0, nil, 'regsvr32.exe', 'BdeInst.dll', nil, SW_SHOW); It pops up with ...
4
votes
2answers
731 views

How to find out what permission an application needs under Windows 7

Is there a way to find out what privileges my application needs in order to run in a Windows 7 environment? I have a Delphi application that is using BDE and ODBC for database connectivity. This ...
2
votes
2answers
256 views

Shut down BDE from code

We have a legacy application uses the BDE. (The BDEcontinues to work surprisingly well, given its age). There are times when our app needs to manipulate folders (Rename, move, etc.) but a .NET or ...
1
vote
2answers
493 views

How does Paradox manage null and empty values?

I'm using Paradox tables through Borland Database Engine (BDE). I'm not able to realise the way null and empty string values are handled in string fields (Paradox data type "A"). My specific problem ...
5
votes
1answer
771 views

Why does setting a table's RecNo property not move to that record?

I have got a TTable component that uses the BDE to access a DBase table. There is no index on the table, so the sort order is the physical order of the records in the table. If I read the RecNo ...
3
votes
1answer
227 views

Does TQuery.Unprepare close the query result in Delphi?

I wonder whether in Delphi calling Query1.Unprepare; implicitly closes Query1, if it was previously active. Such that e.g. calling Next on it will fail. You might say, just go ahead and try but I ...
2
votes
1answer
535 views

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) ...
-1
votes
1answer
2k views

Connection is busy with results for another hstmt in delphi

i have developed a application in Delphi using Paradox and bde , now am migrating it into sql server 2008, i have a lot of table and query components in every form, so am just create user DNS in ...
1
vote
3answers
2k views

Delphi: Migrating from BDE to DBExpress Tutorial

I'm attempting to migrate a Delphi application using BDE, with DBF/MDX data files, to DBExpress using local data files. Simply replacing TTable components with TClientDataset resulted in errors ...
3
votes
2answers
624 views

Record Has Been Changed By Another User when try to Post or Edit

Am developing application using Delphi 7 and Sql Server express 2008 R2 , am using BDE to connect Sql Server through ODBC, and SQL Native Client is used for driver. In some particular forms the table ...
1
vote
3answers
437 views

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 ...
0
votes
2answers
88 views

Look for tables in a subdirectory

Using BDE and TTable components that run off of alias' how do I navigate from the alias into a sub directory? For example I have an alias 'GIPM' this alias points to 'C:\Program Files\GIPM' within ...
0
votes
1answer
578 views

Parallel using Paradox database with c# JET and another program

I'm looking for how to access a Paradox database with C#. The problem is that, on workstation is all ready running program, which using target database. Until it's running, oleDbConnection.Open() ...
1
vote
1answer
284 views

In Delphi get value from lookup field

I have database Paradox 7. Two tables: Order -------- OCode ODate // Buy date OCount // Product count PPrice // Price of product in current moment PCode // Product code CCode //Client code Product ...
2
votes
1answer
331 views

delphi 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 datamoudle, ...
2
votes
1answer
279 views

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 ...
0
votes
0answers
205 views

TQuery Float field is implicitly rounded to integer when using ODBC

I'm querying 1 value from table. In db it's value is 48.8 When my app use BDE's native Oracle SQL Link driver, everything is Ok, it's still 48.8. Then I make the app to use another BDE alias, which ...
1
vote
3answers
10k views

How do I solve the “Cannot perform this operation on a closed dataset” with Borland Database Engine and a Delphi application? [closed]

The application was working perfectly, until I edited the user database (*.dbf) in OpenOffice.org Calc. Now it gives me the above error about a closed dataset.
1
vote
2answers
461 views

Multiple users accessing the same BDE Alias, but accessing different directories

Background: I have an application written in Delphi that uses the Borland Database Engine (BDE) that looks at its data through a BDE Alias. I've managed to get it running via Remote Desktop Services, ...
2
votes
1answer
193 views

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

What are options for a Delphi app to migrate away from BDE if using Oracle database

We have a Delphi 5 app connecting to an Oracle 8i database. Most logic is siting in the database as Stored Procedures. Currently we are using the Borland Database Engine (BDE) to connect to Oracle ...
0
votes
2answers
585 views

I get invalid index descriptor when using ancient FoxPro 2.6 tables

I'm connecting to old FoxPro 2.6 tables in Delphi 2007. I've installed the BDE and I put a TTable on the form. One table doesn't work Set the databasename to c:\datadir and The tablename to ...
1
vote
1answer
545 views

Problem in Delphi/BDE App - Ora-942 table or view does not exist

I can not explain this, i keep gettign the Message "Ora942-table or view does not exist" from one pc while i dont get it from the other one, both access the same Schema and Database and has the same ...

1 2 3