Hi Guys, Please a need a help, I need make a application with TIDTcpServer, TIDTcpClient and IBO, but a have a question. I need do this: 1- I have to connect...
OK, let me explain my self. Currently I enforce certain search criteria on an IB_Query. I then Assign the SQL with search criteria to the IBOQuery, for use in ...
I suggest you put a critical section around it so that only one thread can access your connection at a time. You may need something more elaborate if your...
... Please avoid using a NILL owner in constructors. See below for how it should be done: function TDataModuleName.CreateDSQL( aTx: TIB_Transaction; const...
... Create a IB_Connection (perhaps a IB_Session too) and the IB_Cursor just in place und use it. Or for quicker access use a connection pool. Andreas...
Thanks Andreas, Well, I think creating and tearing down all those database components on each inbound message (because i need to use this approach in OnExecute...
We have a very strange recurring problem on only one customer site. Randomly permissions seem to become non effective on parts of the database - usually a...
I am doing a reload of a large dialect 1 Firebird database to a dialect 3 Firebird database. I am using the TIB_Datapump component and seem to have everything...
A Connection pool is a collection of allready connected Connections (Session and Transactions and perhaps Cursors), that you can use in a thread. If you use...
... You could investigate the DisconnectToPool method. From the IBO Online FAQ Q: How can I implement connection pooling that you talk about in IBO 4? A: Just...
Can anyone please suggest what I'm doing wrong here? Thanks Mitch SELECT ITEM_ATTRIB.ITEM_ATTRIB_DATA FROM ITEM_ATTRIB WHERE ITEM_ATTRIB.ITEM_ID = :ITEM_ID...
... Thanks Helen. Turning off KeyLinksAutodefine or leaving on with the code below still gives the same error. SELECT ITEM_ATTRIB_DATA FROM ITEM_ATTRIB WHERE ...
... and 2) at what point you see the exception message. ... IBO4.6B, FB2.0, Delphi 2006, FastReport 4.0. I get the message when trying to open a report. I have...
... Assuming your corrected set is SELECT ITEM_ATTRIB_DATA FROM ITEM_ATTRIB WHERE ITEM_ID = :ITEM_ID 1. What is the report doing with the output - is it...
Hello to everybody! I have a TIB_Grid and I would like to sort the records as Drag and Drop. The question is: how to put the Start-Record and the End-Record...
I have an application that I am upgrading from Delphi 2005 to Delphi 2007. It recompiled without any problem. I am using IBO 4.x with TwwIBOQuerys. I have a...
... IBO) ... trying ... problem. ... linked to the other set? e.g. as a detail to a master where the ... It seems to have been an issue with the keylinks...
Every year or so I seem to encounter strange problems with my IBO 4.2Hd/D7/win2k/SP4. Some errors are obviously due to coming back to programming with IBO ...
Is Firebird supposed to be able to work with standard InterBase components that come with Borland C++Builder 6(eg: IBTransaction IBDatabase etc.) and if...
... The legacy components are somewhat out of date, and the copy of Interbase that comes with Builder6 pre dates Firebird. So an alternative interface is...
... No. Those components (known as InterBaseXpress) are an API abstraction layer for InterBase, just as the two series of IBO components are for IB or...
I did some futher investigating.... I came up with a very simple program that had 1 master and 1 detail TwwiboQuery . The master data has 4 columns that the...
First, Thanks to Helen for your reply about the "Generator not defined mystery." At some point in my app's evolution I forgot that I reversed my generator...
... 1. GeneratorLinks at connection level - so inspect the property on your IBODatabase component. 2. An in-code call to the function Gen_ID(). Both...