|
ANN: EMS InterBase/FireBird Utils released
EMS HiTech Company is pleased to announce new products for InterBase/FireBird Server data management.
These are IB Database Comparer - a powerful utility for comparing InterBase/FireBird databases and discovering differences in their structure, IB Query - a powerful utility for building and executing queries, IB DataPump - a wizard application for converting ADO-compatible databases to InterBase/FireBird, IB Data Generator - a powerful tool for test data generation, IB Export - a powerful tool for InterBase/FireBird data export, IB Import - a utility for quick importing data to InterBase/FireBird tables, and IB Extract - metadata and data extraction tool.
The trial versions of all these products are available for download at:
http://www.ems-hitech.com/ibutils/download.phtml
The detailed descriptions and screenshots can be found at:
http://www.ems-hitech.com/ibutils/
We hope that this information was interesting to you, and that you'll like our new products.
Best Regards,
EMS HiTech Team
http://www.ems-hitech.com
Related Discussions - HOW TO ADD A TLISTBOX TO A FORM AT RUNTIME? (2001-01-10 05:05:44)Just add "listbox1.parent:=form1" after "create"...
- WHICH DATABASE SHOULD I USE??? (2001-01-23 00:01:57)I can recomand Borland Interbase. It is fast, easy to use and open source. It isn't neccessary to have Delphi C/S. You can find more information on...
- WRITING FROM A QUERY INTO A TABLE (2001-01-24 09:29:42)with TableX do
begin
Insert;
FieldByName('Field1').asString := QueryZ.FieldByName('FieldA').asString;
FieldByName('Field2').asString :=...
- TRICHEDIT CHANGES CONTENTS ON WINDOWS 2000 (2001-01-25 10:46:38)It would not be the first time Microsoft makes some modifications to the behaviour of a library. For example, everytime a new version of MDAC is...
- RICHEDIT! (2001-02-05 08:07:07)OK, to "protect the text where it can not be modified, use
the SelAttributes.Protected property. You can also prevent
naything from being...
- HOW TO USE TCLIENTDATASET WITHOUT BDE ? (2001-03-07 21:16:40)Please try to use Interbase Component in delphi 5.
I think that it's so good.
- COMPILING APPS FOR NON-INTEL PROCESSORS (2001-03-13 13:08:46)Yeah it would be nice. I have had several people request Mac versions of our software.
- HOW TO CREATE A DATABASE AND CONNECT IT IN DELPHI USING IBDATASE (2001-03-14 11:02:25)Create database:
with IBDatabase1 do begin
Params.Clear;
Params.Add('USER "SYSDBA"');
Params.Add('PASSWORD "masterkey"');...
- LOADING IMAGES FROM DATABASE (2001-03-15 11:38:29)Blob reading and writing with IBX
// Test table:
// ID INTEGER
// IMAGE BLOB
with IBTable1 do begin
// Writing
TableName :=...
- INSERT,UPDATE,DELETE USING SQL? (2001-03-16 23:24:00)You can use TQuery for modify your database.
Query.SQL.Clear;
Query.SQL.Add('INSERT INTO TEST(A, B, C)');
Query.SQL.Add(' VALUES(:P1, :P2,...
|