Tagged Questions
Paradox was created, by Borland, as an integrated database management system and application development language for desktops and servers. It ran orignally under DOS and later under Windows. It is a file based database system with each table in a separate file or files. Paradox for DOS had a built-in scripting language known as PAL, and used tables thru version 4.5. Paradox for Windows was a Windows application that included event processing.
5
votes
2answers
475 views
Problem with Insert query to Paradox table using C#
I have Paradox 5.x tables i need to connect to in order to select and update.
I am using OLEDBConnection.
selecting from the tables i have no problem.
while trying to insert into the tables i met a ...
3
votes
0answers
59 views
Red screen of death on old DOS accounting software (corrupted background structure) [closed]
I need help tracing down the source of this error I'm getting.
I'm guessing somebody who was doing C++ in the DOS era could have seen it already.
Maybe it is not an OS error but an application error ...
3
votes
1answer
177 views
What is .tfc file and how can I use it
I got a database from my client which is .db file to develop new software. At this software I need to open images. After couple research I could open it by paradox dbase reader and I found my images ...
3
votes
3answers
184 views
Paradox SetRange does not provide correct result when querying 3 fields
I have a problem with setting a range on a secondary index in a Paradox 7 table using Delphi2010.
The relevant fields are:
FeatureType (int); YMax (int); XMax (int); YMin (int); Xmin (int).
The ...
3
votes
4answers
2k views
Delphi: Paradox DB Field Name Issue (Spaces in field name)
I have a paradox table from a legacy system I need to run a single query on. The field names have spaces in them - i.e. "Street 1". When I try and formulate a query in delphi for only the "Street 1" ...
2
votes
1answer
1k views
Delphi/Paradox Database desktop DBD32.exe settings for Windows 7
Does anyone have any suggestions on the compatibility setting on Windows 7 for the Delphi/Paradox Database desktop program so that it displays properly in Windows 7 (x64)?
We've tried quite a few ...
2
votes
1answer
270 views
Delphi TTable.Exists fails on Paradox table even if database tables exist
When I create a table object (Table1) from scratch and assign the TableName property to an existing table on disk, the Table1.Exist function fails. I'm using Delphi2010 and it is a Paradox 7 table.
...
2
votes
1answer
104 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 ...
2
votes
2answers
541 views
Convert Paradox to MDB
I need to access an database in DB (paradox) files. I'm in a project that will be used Delphi and Access (i know it's very old but the customer want this) and the old project use paradox database.
I ...
2
votes
3answers
82 views
WPF Drawing Paradox
How is it possible, that 2 ellipses with the same Radius where not (visually) with the same Radius?
in the image bellow, Black and Red ellipses has the same RadiusX... but look on the picture!
...
2
votes
4answers
554 views
Cleaning up ODBC DSN in C# .NET
I am using C# and an OBDC DSN to connect to a Paradox database. I seem to be leaking memory if I open and close each connection.
My code is basically:
csb.Dsn = "DNSName";
...
2
votes
2answers
1k views
Is it possible to read to a Paradox 7.x .db file in a .Net app?
I'm trying to read a Paradox 7.x .db file in a .Net 3.5 app and I'm not being successful on that.
First of all, when I'm registering the odbc, as a user or system dsn, the Microsoft Paradox ODBC ...
2
votes
4answers
1k views
How to update report in access with bound dataset automatically?
I have a single entry output from a paradox table which is imported into Access. Now I have created a report and done the databinding within the report to the dataset from Paradox. When work is done ...
1
vote
1answer
56 views
Can i add index to agregated field on Paradox
ProductTable.AddIndex('Count_Indx','Count',[ixCaseInsensitive])
I try do this code but not working. Write "Count field not founded on Table"
1
vote
1answer
69 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
...
1
vote
1answer
74 views
Encoding issue while reading Paradox database using Java
I have Java application (using JDK 1.7) which is reading Paradox files (*.db). It works well with Latin characters. I am trying to make this application to display Cyrillic characters correctly, ...
1
vote
2answers
128 views
Database errors in Quantum Grid demos in Delphi XE Professional
Whenever I open one of the Quantum Grid demos in Delphi XE Pro (on Windows 7 32-bit), the following error is displayed for every table (I think) in the project:
The message is:
Network ...
1
vote
0answers
27 views
Does paradox DB allow pagination?
In SQL Server I can use this:
DECLARE @PageNum AS INT;
DECLARE @PageSize AS INT;
SET @PageNum = 2;
SET @PageSize = 10;
WITH OrdersRN AS
(
SELECT ROW_NUMBER() OVER(ORDER BY OrderDate, OrderID) AS ...
1
vote
1answer
209 views
Migrating data from Paradox to SQL Server
The company I work for has a very old system that uses Paradox.
I need to rewrite this system and I need to migrate the data from Paradox to SQL Server 2008.
How do I do this?
1
vote
1answer
190 views
SSIS how to import data from Paradox?
I'm trying to import data coming from a Paradox Database (all files *.DB are located in a folder) to Sql server 2008 with SSIS 2008.
From my OLE DB Source, I created a new Connection using Jet 4.0 OLE ...
1
vote
1answer
115 views
How do you add data providers to the “Data Source Configuration Wizard” in VS2010
How do you add data providers to the "Data Source Configuration Wizard"? I'd like to add Paradox to this list. Is it possible?
Thanks
1
vote
1answer
187 views
solving St Peterburg Paradox in R
St Petersburg paradox is a gambling game where you pay a fixed amount to enter the game. You flip a coin repeatedly until a tails is thrown. Your payoff is the sum from 1 to n of 2^n where n is the ...
1
vote
4answers
270 views
Program to simulate Zeno's paradox in Java
So I was reading in a book of a certain paradox: Say you are in a room with a door opposite of you. In order to leave though, you must travel half the distance there each time. So the first stride you ...
1
vote
6answers
131 views
How can System.Object use sub-classes as its return types?
It is true in .NET that all types inherit from System.Object.
What I find paradoxical, is a few methods on System.Object - namely
public virtual string ToString();
public virtual bool Equals(object ...
1
vote
2answers
3k views
Paradox: Query a Date column + a Time column as a DateTime
First off, I'm a Paradox newbie.
Secondly, I'm querying a database of a third-party software package and cannot change the schema.
I have two fields simply named "Date" and "Time" that I'd like to ...
1
vote
4answers
4k views
Paradox Tables in C#
I'm trying to read a Paradox 5 table into a dataset or simular data structure with the view to putting it into an SQL server 2005 table. I've trawled google and SO but with not much luck. I've tried ...
1
vote
1answer
255 views
Is it possible to use nHibernate with Paradox database?
Is it possible to configure nHibernate to connect to Paradox database (*.db files)?
0
votes
1answer
97 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() ...
0
votes
0answers
38 views
Make report with TQReport
I Have 3 table:
Division:
---------
DCode | PK
DName
Worker:
----------
WCode | PK
WName
ECode | FK
DCode | FK
Experience
----------
ECode | PK
ECost
I need build with QReport report like this
...
0
votes
1answer
39 views
Datadirect Drivers for Paradox
I need to access my data stored in the Paradox database.
I have installed Datadirect drivers for accessing the paradox database and have configured the User DSN and System DSN data source ...
0
votes
0answers
55 views
Update blob field, with data taken from a select, crashes on Paradox
I have a Paradox table, ICONS, with this structure:
Field Type Len PK
PAGE S *
POSITION S *
CODE A 8
ICON M 1
DESC A 50
I need to ...
0
votes
2answers
97 views
filter dates fields from paradox db using microsoft.jet.oledb.4.0
Hi I'm trying to filter data fields from a paradox database table (from information system on programmed on delphi)...
I successfully made the connection with the connection string:
Provider ...
0
votes
0answers
109 views
Updating legacy paradox database from VB.NET, Table is not in expected format
I'm using a VB.NET/SQL application and am integrating temporarily with another legacy application which uses Paradox and I need to run a simple update query on the tables to make sure their ...
0
votes
1answer
53 views
Is it possible to connect to SQL Server from Paradox?
I have a module in Paradox where I have to write some records to a SQL Server database. Can this be done using ODBC? How can it be done?
Thanks
0
votes
0answers
65 views
Paradox create table with date column
I want to create a Paradox 7 table and i'm using the following connection string:
Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=Paradox 7.x;Data Source=c:\;
and the following SQL:
create ...
0
votes
0answers
117 views
Cannot update Paradox table which is in edit mode C# ODBC
I am using ODBC driver in C# to connect to a Paradox database table which is in another machine and insert a record into it. The problem is that when that table is in edit mode(When someone is ...
0
votes
0answers
137 views
Directory handle does not release after Paradox ODBC connection is closed
I'm using ODBC in C# to connect to a set of Paradox tables. The code looks like this:
static public Dictionary<string, Dictionary<string, Dictionary<string, string>>>
...
0
votes
0answers
128 views
Can't Delete Directory after unzipping files into it and reading them using ODBC in C#
I'm using C# to open a .zip file full of Paradox database dump (.DB) files, read the files using the ODBC Paradox driver, and then delete the extracted files when I'm done.
I'm using DotNetZip to ...
0
votes
0answers
287 views
Import Paradox db to excel 2007 [closed]
I have Paradox database which i like to import into excel 2007 but i dont know how. After doing some research i found that i can do this in Ms access when i try to import the database in access i get ...
0
votes
4answers
2k views
Import data from Excel [closed]
I want to import data from Excel into a Paradox database on Delphi 7.
How can I do that using Delphi?
0
votes
1answer
114 views
0
votes
2answers
236 views
Unable to insert row to a table using OleDBAdapter
OleDbConnection _connection = new OleDbConnection();
StringBuilder ConnectionString = new StringBuilder("");
ConnectionString.Append(@"Provider=Microsoft.Jet.OLEDB.4.0;");
...
0
votes
1answer
430 views
Error: 536 Error in File <report filename> Unable to connect: incorrect log on parameters
I am getting the above error on a client's machine when executing the following code
for i := 0 to crpe.Subreports.Count - 1 do
for j:=0 to crpe.Subreports[i].Tables.Count - 1 do
...
0
votes
2answers
199 views
InstallAware 9 problem with Paradox DB and Delphi 2009
My project is on Delphi 2009, Paradox DB and Google Maps. The code is OK and the time right now is to build the project. This is the first time to do it. As I know there are two programs to create the ...
0
votes
2answers
557 views
Read paradox DBF files and import in H2 database
can i import DBF files (i think it is files of paradox database) into H2 database?
I think a good solution is to write a small wrapper in java to read dbf data and save in h2 database, there is a ...
0
votes
1answer
897 views
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified - works fine in IDE - not once exported
I am developing a Java app (with ODBC bridge - forgive me - the only paradox driver I have been able to obtain is the Microsoft ODBC driver) which works fine in Eclipse (and NetBeans) - connecting and ...
0
votes
0answers
799 views
Import Paradox table in Access database: Incorrect collating sequence
I have a Paradox 5.0 database and want to migrate it to Access 2007. But if I try to import a Paradox table, Access gives an error message: "Incorrect collating sequence". The Help says: "You tried to ...
0
votes
2answers
763 views
install PARADOX extension for PHP
I have an ApacheFriends XAMPP running on my windows machine and i am trying to access some Paradox database files directly from PHP.
I see that there is an extension for this but how can i install it ...
0
votes
2answers
762 views
Using Images and data with BLOB fields in C++ Builder
I'm a C++ programmer using Borland's C++ Builder 5. I'm working on a database application
and its causing me serious grief right now...
I'm using a Paradox 7.0 table with the C++ Builder and I simply ...
0
votes
3answers
578 views
SUM() Problem in Paradox Database
I'm currently working with a paradox database that was implemented before I started working at my current job at an insurance firm.
Long story short is that when I am trying to to compile a query of ...