I am moving from TIBOTables to TIBOQueries. Using TIBOTables, there is apparently some work done behind the scenes after a POST is performed and apparently...
... No, you're a bit confused here I think. The behaviour you're talking about is AutoCommit and it has nothing to do with table vs query components. It is a...
Hi all, I wrote a test application wich creates some threads, each one with a TIB_Session, TIB_Connection, TIB_Transaction and TIBOQuery, all created inside...
I rewrote the test application to simplify it, and i´m posting the code and the result times here. I put the database in a remote server to get larger...
... There are so many variables in what you are testing that it is hard to know where to start. The first thing you must understand is that unless you did this...
Hello, I have problem with Characteristics, DB->Characteristics.dbServer_Major_Version, when I try get this information, I get Access Violation, is this same,...
... Any of the projects in the Samples folder of your IBO installation will do. If you are doing 2-tier client server, one instance of your client application...
... I don't like this sort of structure at all, where the GUI layer is jumbled together with the data access layer. I put all of the data access stuff,...
Sorry, my question goes to wrong thread, please ignore previous question. Here, I restart again with new thread - Is there available of ClientDataSet component...
FB 1.5 Embedded, IBO 4.8.6, D2007, Various Windows OS I am trying to track the details down on this, but thought I would ask to see if anyone else is seeing...
I know there's a variety of different forums that I could post this on, but since I use IBO, I figured this would be the best place to start... I have an...
I downloaded and ran IBO4_8_7_Eval.exe today and when I tried to compile any of the projects, I was told that IB_Parse.dcu is not found. I do have a...
Hi... I have a weird problem. When I use the command: TIB_Query1.Close; TIB_Query1.SQL.Clear; TIB_Query1.SQLSelect.Clear; Arriving in SQL.Clear the error...
... Why did you have to clear the SELECT part of your SQL, after your cleared all the SQL? You don't need the error line. "TIB_Query1.SQLSelect.Clear;" delete...
Good day New be to IB The following works with Access, not IB What will be the correct why? If RadioButton2.Checked = True Then IBTable1.Sort := 'EMAIL ASC'; ...
... That's because you are using the IBX components and Sort is a method of the TADODatasets (the IBX dataset doesn't have that method). ... Well, this is not...
Is there any way to prevent transactions from automatically starting? I want to be able to run in an environment where I am responsible for starting and...
Turn AutoCommit off and or just issue your own StartTransaction before the start of any database opereations. IBO will not start its own in that case. ... ...
I know that issuing my own StartTransaction will prevent IBO from starting another one, but what I want is for IBO to throw an exception if I forget to issue...
To avoid missing a start .. if not IBODatabase.InTransaction then IBODatabase.StartTransaction before ever database operation ... From: "Steve Boyd"...