Click here to Skip to main content
15,884,064 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 191.7K   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

 
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 
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 
BugBugs or inconsistent data? asking for help. Pin
jonnyqqq21-May-12 3:16
jonnyqqq21-May-12 3:16 
GeneralMy vote of 5 Pin
Andez200426-Apr-12 0:15
Andez200426-Apr-12 0:15 
GeneralRe: My vote of 5 Pin
Andez200426-Apr-12 0:59
Andez200426-Apr-12 0:59 
QuestionHow to identify which fields are part of Primary key? Pin
Peter Kovalchuk22-Feb-12 11:22
professionalPeter Kovalchuk22-Feb-12 11:22 
QuestionReading encrypted table data Pin
Groffy17-Jan-12 4:25
Groffy17-Jan-12 4:25 
QuestionEncoding issue (Argument Exception: Char Buffer too small) Pin
Ben Schowe15-Sep-11 5:46
Ben Schowe15-Sep-11 5:46 
GeneralBugs when using indexes to read Pin
Joao Teixeira Soares11-Apr-11 19:18
Joao Teixeira Soares11-Apr-11 19:18 
GeneralBug in Method ParadoxFile.GetString Pin
goracio2-Feb-11 23:45
goracio2-Feb-11 23:45 
GeneralRe: Bug in Method ParadoxFile.GetString Pin
Guldil3-Feb-11 9:39
Guldil3-Feb-11 9:39 
GeneralRe: Bug in Method ParadoxFile.GetString Pin
goracio3-Feb-11 20:44
goracio3-Feb-11 20:44 
GeneralRe: Bug in Method ParadoxFile.GetString Pin
NYCChris9-Feb-11 10:28
NYCChris9-Feb-11 10:28 
GeneralRe: Bug in Method ParadoxFile.GetString Pin
Petr Bříza16-Mar-11 20:41
Petr Bříza16-Mar-11 20:41 
GeneralRe: Bug in Method ParadoxFile.GetString Pin
clbyrne9-Feb-14 6:19
clbyrne9-Feb-14 6:19 
GeneralI think I do it for suballocated data type (type 3) Pin
kaiserssosse20-Jan-11 21:33
kaiserssosse20-Jan-11 21:33 
GeneralRe: I think I do it for suballocated data type (type 3) Pin
kaiserssosse9-Feb-11 21:34
kaiserssosse9-Feb-11 21:34 

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.