|
ANN: EMS QuickDesk for InterBase/FB v. 2.26 released...
EMS HiTech Company is very glad to announce the next version of EMS QuickDesk (2.26) -
The Best InterBase/FireBird Administration and Development Tool.
You can download the latest version from
http://www.ems-hitech.com/quickdesk/download.phtml
What's new in version 2.26?
1. The possibility of opening some objects simultaneously from DB Explorer is added. To activate this function just select the objects you need in SQL Assistant, right click and choose "Open Objects" item from the popup menu.
2. The "Create View From Table" feature is improved. Now you can create BEFORE INSERT, BEFORE UPDATE and BEFORE DELETE triggers altogether with View. The according item is also added to the DB Explorer popup menu.
3. Now you can easy create SELECT FROM Table or View statement. Just select the corresponding object in DB Explorer Objects Tree and drag it into the SQL Editor window.
4. Stored Procedure debugger: bug with debugging procedures containing EXECUTE PROCEDURE statement is fixed now.
5. Fixed bug with deleting objects from DB Explorer if object name contains number (SQL Dialect 1).
6. Few minor corrections and fixes.
What is EMS QuickDesk?
EMS QuickDesk provides you with effective and powerful tools for InterBase/FireBird administration. It helps to edit all database objects, search in metadata, extract metadata, print metadata, import data and export it into as many as 12 most popular formats. QuickDesk also includes SP Debugger, SQL Editor, Visual Query Builder, Grant Manager, User Manager, BLOB Viewer/Editor, SQL Script processor, Third-Party plugins support and many more other features...
Best regards,
EMS HiTech development 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,...
|