|
ANN: EasyTable 4.15 with SQL
AidAim Software introduces EasyTable 4.15.
EasyTable is BDE alternative database system with SQL support.
Key features:
-------------
- No BDE, no DLLs, no OCX
- SQL'92 subset
- Single database file
- Compiles right into EXE
- Small footprint
- The fastest access and search by multi-indexes
- Data encryption
- BLOB compression
- Shareable-in-memory tables
- In-memory mode
- Lots of demos for Delphi and C++ Builder
- Fully compatible with TTable, TQuery and standard DB-aware controls
SQL supported in EasyTable 4.15
- SELECT [DISTINCT | ALL] columns_list
[INTO destination_table]
FROM table_reference
[[join_type] JOIN] table_reference]
[ON join_condition] | USING (join columns)]
[WHERE predicates]
[ORDER BY order_list]
[UNION [ALL] [CORRESPONDING [BY (column_list)]] SELECT...]
[EXCEPT | MINUS [ALL] [CORRESPONDING ...]]
[INTERSECT [ALL] [CORRESPONDING ...]]
- CREATE TABLE, DROP TABLE, ALTER TABLE statements
- CREATE INDEX, DROP INDEX statements
- INSERT, UPDATE, DELETE statements
- SQL scripts (multiple commands separated by ';')
- Parameters in queries
Further SQL supported in EasyTable 4.20 (scheduled to the end of November)
- SELECT [DISTINCT | ALL] columns_list
[INTO destination_table]
FROM table_reference
[[join_type] JOIN] table_reference]
[ON join_condition] | USING (join columns)]
[WHERE predicates]
[GROUP BY group_list]
[HAVING predicates]
[ORDER BY order_list]
[UNION [ALL] [CORRESPONDING [BY (column_list)]] SELECT...]
[EXCEPT | MINUS [ALL] [CORRESPONDING ...]]
[INTERSECT [ALL] [CORRESPONDING ...]]
- BETWEEN, IN operators
- Aggregate functions COUNT,SUM,MIN,MAX,AVG
- Support for subqueries
- Saving database structure and data to SQL script
For a more detailed list of EasyTable features,
please visit http://www.aidaim.com
--
Best regards,
Andrew Harrison,
AidAim Software,
http://www.aidaim.com
Compression, encryption and database components
Related Discussions - 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 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...
- 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 ...
- LIKE IN SQL AND DELPHI (2001-01-11 12:11:56)Hmm, I do not know if their is a simpler answer, but the only way I can think of is to just mention all of them, like this:
LIKE '%a%' or LIKE...
- INDEX PROBLEMS (2001-01-12 08:28:01)I've worked with a configuration like yours. Please specify the method you use to access Pervasive database (ODBC, DBE, ADOExpress, Titan, P.SQL...
- YOUR FAVORITE BDE ALTERNATIVE? (2001-01-13 10:44:19)I joined the company I am currently working for three years ago. MsAccess databases were managed with the BDE. Since we ship our application to...
- QUERY PROBLEM......( HELP, HELP ) (2001-01-18 19:44:19)the answere found by you will work though it will slow down the database server
so the better option will be to use the bind variable in query...
|