Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#

Paradox database native .NET reader

Rate me:
Please Sign up or sign in to vote.
4.87/5 (30 votes)
17 Mar 2011CPOL4 min read 190.5K   5.3K   54   76
Read contents of a Paradox database in pure .NET code without using BDE or other libraries; index support included.

Introduction

If you are working on software which accesses a Paradox database, you are probably using BDE (Borland Database Engine). This article shows how to use Paradox database files and read some data from them directly. You can also use the primary index to find specific records you need. This could be useful if BDE doesn't cooperate with you or there is another reason why you cannot or don't want to use BDE.

Background

Every developer sometimes has to deal with some kind of black-box - piece of technology which is not opened, and can be accessed only from some external interface, but there is a problem - the black-box is quite mysterious to us - one time it works, another time it doesn't, and whatever you do, it seems to be having its own moods. And then I always wish it would be opened so I could debug it, trace into it, and look at its teeth. Are you also a developer who has Reflector between quick links? Then you will probably understand why I started to search for some .NET native Paradox database reader. I couldn't find any, but I have found some Paradox format specifications, so I decided to write one myself and make it public for others who could use it. Many thanks to Randy Beck and Kevin Mitchell for sharing the Paradox internal structure, and because their materials are online, I will focus my efforts to describing my own code.

Paradox splits data to files using database objects - every table has its own file, and every index too. Data files and indexes have very similar structure, so we can handle them both in one class - ParadoxFile. BLOB values are also stored in their own files, but I haven't implemented the structure.

  • ParadoxFile - base class working with common structures from Paradox data files and indexes
  • ParadoxFile.DataBlock - represents one block of data
  • ParadoxFile.FieldInfo - data type of the field
  • ParadoxFile.V4Hdr - structure which is present only in certain Paradox files/versions
  • ParadoxTable - represents table data file
  • ParadoxPrimaryKey - represents table index
  • ParadoxFileType - enum with all file types
  • ParadoxFieldType - enum with all data types
  • ParadoxRecord - represents a data record
  • ParadoxDataReader - standard IDataReader implementation

The index file is, in fact, simply a table with indexes of datablocks and related indexed values. You can read it directly, but I also created a mechanism which browses through the index tree for you and picks up the desired record. You will have nothing more to do but specify a condition which you would like to apply on your data.

  • ParadoxCondition - base class for conditions which can be used for searching in index data
  • ParadoxCondition nested classes - various condition implementations
  • ParadoxCompareOperator - enum with supported compare operators (==, !=, <, <=, >, >=)

Class diagram

Using the code

One way to go is just open a table and start enumerating. This is done by the following piece of code. We will create a ParadoxTable object and use the Enumerate method to traverse through records. Data is retrieved synchronously as needed, so if we stop reading after a few records, no redundant read operations are taken.

C#
var table = new ParadoxTable(dbPath, "zakazky");
var recIndex = 1;
foreach (var rec in table.Enumerate())
{
    Console.WriteLine("Record #{0}", recIndex++);
    for (int i=0; i<table.FieldCount; i++)
    {
        Console.WriteLine("    {0} = {1}", table.FieldNames[i], rec.DataValues[i]);
    }
    if (recIndex > 10) break;
}

There are, of course, scenarios where this simple method will not suffice. Sometimes we also have to read some data in the middle of a large database, so we need to use an index to minimize disk operations. In the next sample, we will use a primary key index to find records with key values in the range between 1750 and 1760. At first, the index file has to be opened, then we will create a condition composed from two compare operations. We can browse data by calling the Enumerate method on the index. In this case, we will use the ParadoxDataReader class with the the IDatareader implementation so we don't need to rewrite a lot of code if we have used BDE before.

C#
var index = new ParadoxPrimaryKey(table, Path.Combine(dbPath, "zakazky.PX"));
var condition =
    new ParadoxCondition.LogicalAnd(
        new ParadoxCondition.Compare(
            ParadoxCompareOperator.GreaterOrEqual, 1750, 0, 0),
        new ParadoxCondition.Compare(
            ParadoxCompareOperator.LessOrEqual, 1760, 0, 0));
var qry = index.Enumerate(condition);
var rdr = new ParadoxDataReader(table, qry);
recIndex = 1;
while (rdr.Read())
{
    Console.WriteLine("Record #{0}", recIndex++);
    for (int i = 0; i < rdr.FieldCount; i++)
    {
        Console.WriteLine("    {0} = {1}", rdr.GetName(i), rdr[i]);
    }
}

Limitations

  • read-only solution
  • not all data types are supported
  • no SQL, LINQ, or other complex queries
  • you should not work with live database during writing

History

  • 1.0 - Initial version
  • 1.1 - Updated Number data type support (thanks, Tonki)
  • 1.2 - Additional data type support (thanks to Mark Kuin, Christopher Erker, and Tonki again)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Petr Bříza
Czech Republic Czech Republic


Freelance .NET developer from Prague, Czech republic. You have a problem - I am the solution.

Visit me at http://petr.briza.net.


Comments and Discussions

 
QuestionSolve the BUG Problem (race Condition) Pin
Wilhelm, Michael8-Mar-15 1:03
Wilhelm, Michael8-Mar-15 1:03 
AnswerRe: Solve the BUG Problem (race Condition) Pin
Member 1217475630-Apr-18 5:13
Member 1217475630-Apr-18 5:13 
QuestionExcellent Pin
nico7128-Aug-14 5:19
nico7128-Aug-14 5:19 
QuestionVB.net Pin
Member 1080934227-Jun-14 8:12
Member 1080934227-Jun-14 8:12 
Questionuse this tool on live db? Pin
Member 93821283-Jun-14 5:00
Member 93821283-Jun-14 5:00 
AnswerRe: use this tool on live db? Pin
greydmar11-Feb-15 0:52
greydmar11-Feb-15 0:52 
QuestionExcellent Work - I had an issue with Negative Currency Values until I changed the code Pin
clbyrne6-Feb-14 5:16
clbyrne6-Feb-14 5:16 
GeneralMy vote of 5 Pin
Marc Greiner at home30-Jan-14 11:15
Marc Greiner at home30-Jan-14 11:15 
QuestionThank You Pin
Member 1046665914-Dec-13 8:34
Member 1046665914-Dec-13 8:34 
QuestionWell done Pin
Jan Vratislav19-Nov-13 11:42
professionalJan Vratislav19-Nov-13 11:42 
GeneralNice work Pin
CodePuller5-Nov-13 11:24
CodePuller5-Nov-13 11:24 
QuestionDataBlock index Pin
massimo giampieri14-Feb-13 6:47
massimo giampieri14-Feb-13 6:47 
QuestionMemoBlob field return only 200 chars Pin
Daniel Cvetanovski4-Feb-13 1:25
Daniel Cvetanovski4-Feb-13 1:25 
GeneralMy vote of 5 Pin
Bill Noto7-Jan-13 9:54
Bill Noto7-Jan-13 9:54 
QuestionGraphic and Binary Pin
Ultimosoftware20-Sep-12 19:38
Ultimosoftware20-Sep-12 19:38 
GeneralMy vote of 3 Pin
AlbertoLeon CSharpMan16-Sep-12 6:19
AlbertoLeon CSharpMan16-Sep-12 6:19 
BugErrors When Doing A Simple Read Pin
Member 784497824-Aug-12 8:03
Member 784497824-Aug-12 8:03 
GeneralRe: Errors When Doing A Simple Read Pin
Member 784497824-Aug-12 8:09
Member 784497824-Aug-12 8:09 
Ok, so I put break points at the reads when the records in question entered the errors. So when I put a break point and tried to view the DataValues property of the paraRead it was just an error but then if I waited a second or two then the DataValues property showed me all the results except the last column where the value was null. So could there be some race conditions?
GeneralRe: Errors When Doing A Simple Read Pin
Wilhelm, Michael8-Mar-15 1:05
Wilhelm, Michael8-Mar-15 1:05 
QuestionA problem reading numbers Pin
Member 926798826-Jul-12 3:57
Member 926798826-Jul-12 3:57 
QuestionEncoding support Pin
Member 909365012-Jun-12 6:48
Member 909365012-Jun-12 6:48 
QuestionBugs while reading currency values Pin
chanloongloo28-May-12 20:13
chanloongloo28-May-12 20:13 
AnswerRe: Bugs while reading currency values Pin
clbyrne9-Feb-14 6:00
clbyrne9-Feb-14 6:00 
QuestionBoolean Support? Pin
MKruluts21-May-12 4:26
MKruluts21-May-12 4:26 
AnswerRe: Boolean Support? Pin
MKruluts21-May-12 5:05
MKruluts21-May-12 5:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.