|
ANN: EMS QuickDesk for InterBase/FB Lite Edition...
Dear Sirs and Madams,
EMS HiTech company is very glad to announce EMS QuickDesk Lite Edition!
It is inexpensive but effective and powerful tool, that will help you to solve most of the problems in InterBase/FireBird administration...
You can download our new software from
http://www.quickdesk.net/download.phtml
What is EMS QuickDesk Lite?
EMS QuickDesk Lite Edition is inexpensive but effective and powerful tool for InterBase/FireBird administration. It helps to create and edit all database objects (Domains, Tables, Views, Triggers, Generators, Stored Procedures, Exceptions and UDFs), search in metadata and extract metadata.
This tool has full support of Interbase 6/FireBird services such as Backup/Restore databases, Shutdown database, Server Properties and so on.
QuickDesk Lite also includes SQL Editor, Grant Manager, User Manager, SQL Script processor and many more other features....
Best Regards,
EMS QuickDesk Development Team
http://www.ems-hitech.com
Related Discussions - 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 :=...
- TRANSPARENT COMPONENTS (2001-05-14 11:55:38)Till the end of May 2001 you can register cool components: Greatis Form Skin only for $19.95 instead of regular price $29.95....
- 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.
- 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,...
- PROBLEM WITH INTERBASE! (2001-03-18 22:40:44)I've created this parameters and I am having an error in this line: ibquery.post;
Regards,
Eduardo Tavares
www.tavareswebsite.cjb.net
- FTP PROGRAM (2001-03-19 00:38:57)I think you can try at www.nevrona.com/indy
First you download this component called indy and download the examples too.
Regards,
Eduardo...
- HOW TO INSERT MEMO INTO INTERBASE DB WITH TQUERY? (2001-05-09 14:37:09)Memo fields can be manipulated as a string field. they have CR(#13) and LF(#10) inside them so you don't have to worry about anything. To get the...
|