|
Use extended SQL now for paradox tables
Abacadabra is pleased to announce unique components for all paradox users.
ParadoxQuery is a NEW Delphi component that enables you to use standard SQL to create paradox tables. You can also call it
. You don't have to call any complex BDE function from now on.
ParadoxQuery enables you to declare
- foreign key constraints,
- null constraints,
- unique constraints,
- defaultvalues and
- check constraints
the same way you would do for SQL databases. Both column and table constraints are supported.
Get a free version on our site.
Related Discussions - USING DLLS (2001-01-03 23:47:50)Hi again Goober ... :o)
Let's take NETAPI32.DLL as an example.
This DLL is created by Microsoft and the explanation of its use is described in...
- RUNNING A DATABASE APPLICATION ON ANOTHER COMPUTER (2001-01-07 05:36:33)In the BDE on the other PC (the one without the database), you must add an alias to point to the location of the database in the format of:...
- HELP WITH EXCEPTIONS ..... I'M GETTING CRAZY! (2001-01-06 19:59:49)How to make it run as if you were running it outside of Delphi.
Tools | Debugger Options --> Language Exceptions.
Their is a checkbox titled...
- HOW TO MAKE MASTRE/DETAIL TABLES LIKE THIS ? (2001-01-04 09:14:14)You will need to add a TDataSource for Table 1 & 2 and connect to the respective tables. In the Table2 object set the "Table2.MasterSource =...
- HOW TO CREATE SEQURE LOGIN TO DESKTOP APPLICATION (2001-01-05 09:30:01)I'm not pretty sure, what your intention is. One possible approach would be to use a edit-field, which cannot be "spyed out" by the usual password...
- QUERY PARAMETER QUESTION...? (2001-01-04 22:44:03)there are two parts
first is writing the script with variable and another is using bind variable
eg-
for first you can say
query1.sql.text...
- TOO STUPID TO WORK OUT HOW TO USE GETKEYBOARDSTATE (2001-01-06 22:32:24)GetKeyboardState just gets the information of the input devices.
For example:
var
KS: TKeyboardstate;
GetKeyBoardState(KS);
//0=OFF...
- QREPORT & TQUERY QUESTION (D5) (2001-01-09 04:12:35)though in your question you said that the dataset property of the quickreport is configured but i bet that you have not because that is the only...
- HOW TO CHECK THE SYNTAX OF A USER DEFINED SQL SCRIPT (2001-01-10 06:53:19)When I am unsure of a SQL statement I put the Open/Execute in a try..except construct.
- HOW CAN I ACCESS BTRIEVE DATA FILES (2001-01-24 06:38:59)Try downloading the Btrieve programmer's guide :
ftp://ftp.pervasive.com/documentation/btrieve/v615/B615PROG.PDF
Good luck ...
|