|
New InterBase Workbench beta available
Upscene Productions is proud to announce the new beta for InterBase Workbench - your developer tool for InterBase.
New in this version:
- InterBase 6 support
- Grant Manager
- Charactersets and collations
- BLOB subtype support
InterBase Workbench offers you a easy-to-use GUI tool to develop for InterBase. It supports multiple connections, multiple editors and has many shortcuts for often used operations. The application is made with ease-of-use in the back of the head.
About Upscene Productions: Upscene Productions develops Delphi component and little freeware applications. Furthermore shareware is created in order to make developing for and using InterBase easier and faster.
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 :=...
- 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
- 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...
- PROBLEM CREATING STORED PROCEDURES IN INTERBASE (2001-03-27 02:38:51)Your problem inside your SetParam procedure.
TIP field too long for string field.
You should use Streams for loading/saving values for this...
- JUST OUT OF INTEREST.... (2001-04-02 07:12:08)It may not be internationally known, but my insurance and annuity calculation application is written in Delphi. I started in D1 and have updated...
|