Hi, according to the readme file, in order to use FB embedded, the application main executable and gds32.dll ib_util.dll firebird.conf must be in the same...
Hi Helen, there was still a discussion on firebird-java, and JayBird has currently no solution (if I didn't miss something...). Anyway, IMHO it is a problem...
HI, Can you tell me how to declare a check constraint such as : PRIMARY KEY check(typeAvion like '[A-Z]%'), or NumVol typenumvol PRIMARY KEY CHECK (NumVol like...
... We use Fb 1.5 and zeos without troubles. We fixed a view bug's in the source of zeos, but this have nothing to do with FB 1.5. In general it works...
Hi All, I need some more information on integrity checking and database fixing. We have rewritten most of our applications from Visual basic to Delphi. The VB...
You can always create view: create view VIEW1 as SELECT .... blah blah blah UNION SELECT .... blah blah blah Then there is nothing more simple than select ......
... reconnect on ... Marek, I know 2 publications: http://www.ibase.ru/fibc/ibx_disc.htm - for IBX 6.03 near without author's text, only code modifications ...
Where can I find the GDS32.DLL in the Firebird 1.5 package for Win32? Please help! Thank you in advance! [Non-text portions of this message have been removed]...
... Martin, did'nt made it myself for years, so... Maybe a) try with Null instead of '' b) try with isql which don't perform metadata cashing and other ...
The database is readonly and distributed on a CD and the search criteria varie according to what my customers want to search for. So I can't create a query. Is...
... Adele, though real RDBMS are MUCH more reliable than surrogates like Access or Paradox, which breaks databases on any client's crash, any database can be...
Hi, ... I believe it can be done with: ORDER BY 1 (or other column ordinal). With regards, Martijn Tonies Database Workbench - developer tool for InterBase,...
... Marc, did you read the Release-Notes? Everything is in there: http://www.ibphoenix.com/main.nfs?a=ibphoenix&s=1078140269:23292&page=ibp_download_15 Uwe...
... 1. Read the document README_library_install.txt in your Firebird /doc directory. 2. Run the program instclient.exe with the appropriate switches. It will...
... This is error in documentation (and I remember seeing it only in IB4 doc, not in IB6), caused by somebody mixing up maximum event number (15) with maximum...
Have you tried something like this ? SELECT 1, Item1, bla1, bla2 from table Union SELECT 2, Item1, bla3, bla4 from table Order by 1, Item1 Pierre Y....
Hi, A customer tells me he receives this error after restarting the server. Anybody an idea? exception class : EIBO_ISCError exception message : ISC ERROR...
Hi, if I have the following table: Id Value 1 100 1 200 2 300 If I want to retrieve the maximum value in each Id group,...
Henrik Sitter
henrik.sitter@...
Mar 1, 2004 12:23 pm
37585
Hi, We seem to have found the cause. The partition on the server on which the /temp directory resides was full. Is there somewhere documentation on these kind...
... Hi Adèle, In addition to what Alexander wrote, please note the following. Using Firebird means that your application does not access the database directly...
Hi, I am trying a test stored procedure with Firebird to see if I can use it for development/testing. I want to call the procedure and have it return multiple...
EXIT is something you use in executable stored procedures which you can call with EXECUTE PROCEDURE. You want a selectable stored procedure, and there you...
SET TERM !!; CREATE PROCEDURE getnames RETURNS ( title VARCHAR(10), forename VARCHAR(30), surname VARCHAR(30) ) AS BEGIN FOR SELECT title, forename, surname ...