I checked the creation order. Both TDatabase and the IB_Connection is in a datamodule. Not sure how to check the real creation order, but the TDatabase is the...
... You need to set the creation order in the form or datamodule. The order of appearance in the DFM has nothing to do with it - the DFM is just a "telephone...
I checked the creation order in the data module. The IB_Connection is well after the TDatabase. And any IBO component is created after the IB_Connection. So...
... About all I can suggest is that you make a testcase reproducing the problem, using the standard databases in the Delphi db samples, so that someone can...
i have an application that uses applyupdate with a TIBOQuery... i'd set the transaction object asosiated to AutoCommit and ReadCommited..but after that i...
I just started using the IBO Admin components to handle backing up a bunch of FB DBs. (Before I'd been calling gbak from code and waiting on the process ...
... The IBOAdmin components invoke service manager operations, which use a different API than data access operations. The IBOAdmin components make their own...
... Don't call Post on a cached dataset! That totally defeats the purpose of caching. Caching is designed to *prevent* Post being called on any changes in...
There was a bug that is fixed in the latest of IBO 4.6Ab that may be related to this. If you would, please send me a little simple sample application ...
If you configure TIBOTable properly it won't require to have everything pulled into the buffers. It's not super-easy and it may not even be fully documented,...
Regarding the install problem. I've stripped out the TIB_OleContainer control. It was way too much headache to be worth it. All future versions of IBO will...
... It is appropriate to call Post on a dataset when CachedUpdates are in use. Calling Post is what posts the changes into the datasets cache of updates. What...
... It is the perfect component to simulate ISAM table access. ... You call InvalidateRows to wipe the buffer clean so that fresh records come from the server....
If there is a conflict on the ZLIB library some controls will not get loaded. I have a new version of the installer with the problem control stripped out. ...
Each of these methods do essentially the same thing except the result is placed either in the Fields array or the BufferFields arral. The nice thing about...
Hi We have two apps. We want one app to tell the other to temporarily disconnect from FB, we can do this. However the other app may have screens open and...
Hello, Robert! You wrote to <IBObjects@yahoogroups.com> on Thu, 06 Apr 2006 08:59:06 +1200: Rm> I know I could write code to reactive all these but it would be...
Thanks Jason. I have already un-installed the update and just went back to the prior version that we have. I had to get some work done :-) I will wait for...
Hi. Yeah I know, but with about 100 screens, many with multiple grids etc and not knowing which would be open, it would be a fairly major undertaking :) Rob...
Good day All 0-=0-=0-=0=-=-0 I have found a problem/bug with IBOQuery component if you use the locate method. Basically if your query is something like select...
Hi, In an IntraWeb application (developed by using components from AtoZedSoftware and TMSSoftware), I have a problem with TIWAdvWebGrid (interfacing with...
I've submited this clause directly to FireBird 1.5 Server and it works fine: SELECT * FROM Doc WHERE descr like '%inclusão%' If I submit the same clause...
What about the other occurences of the same statement in IB_Components and maybe other source modules ? ... From: "Johannes Pretorius" <johannes@...> ...
OK, I've changed Connection Charset to WIN1252 and now transliterate error has gone away. But still persists another problem. There is a difference between ...
hi Johannes, I'm sorry but from if not Prepared or not SQLIsValid then to if (not Prepared) or (not SQLIsValid) then absolutely nothing changes. The two...