Helen: thanks for willingness to help solve our problem as we 'are dead in the water'. ken thompson ... gds32.dll version 5.6.0.29, ibserver.exe version...
Ken, ... Why? and how? Do you have two connections in your application? or one connection using DBHandleShared? Sorry, but all that code means nothing if you...
I am not really sure what the problem is, but I think you need to add the connection to the IB_Transaction like this : FTransaction.AddConnection(Connection); ...
I think the AddConnection is only if you wish to have connections to multiple databases. For the single database FTransaction.IB_Connection := Connection; ...
I have some information I want to allow a user to update in a table. First I read the data from the table and populate a dialog with the fields I want to allow...
Eric, assuming you are working with IBO, you can use the TIB_UtilitiyBar and it's monitor to see whats actually going to the server. As for you problem: Are...
Hi, I have test some different solution but no one are good: 1) First test a) SERVER: SP that send a POST_EVENT every 1% of job b) CLIENT: in my DataModule i...
hello Enrico, events are sent only when the transaction is committed, that's to say when the job is finished. To update a progress bar, follow the hint given...
Yes I am working with IBO. I have not tried the TIB_UtilityBar, but I will give that a try. I checked the triggers. There is only a BI trigger on this table...
Hi Salvatore, i have already tried this method (see my previous e-mail Test n. 2) but perhaps something are wrong. I have used a TIB_Cursor from fetch record...
Do not use nil owners in constructors with IBO components. (when doing multi-threaded stuff) The only IBO component that is fine with a nil owner is...
Looks good to me. I would use the TIB_DSQL component if you are providing the raw SQL statement you plan to use. Nothing says you have to use a TIB_StoredProc...
I'm not really sure the effect you want to display. I think it would be overkill to prompt the user when changing the ordering since they are the ones...
Thanks for correcting that. I was sure something was weird. Let me know when you have the sample app ready. I'd be interested in taking a look at it. Be sure...
If it is a select procedure is all you have to do is stop fetching rows and close it. If it is running on the server then this is a question for the InterBase...
Hi, I'm having trouble reading/writing from a blobstream. After opening a TIB_Query with a blob field, I create the blobstream field: FStream := TIB_BlobStream...
Please ask a more specific question. What is it you are wanting to do with IBO on .NET? Jason Wharton www.ibobjects.com ... Do you know if IBO will be ready...
Use the For Update clause on the select statement used for the stored procedure. Otherwise, it will batch your notification rows together into a multi-record...
I'm not entirely sure what all may have changed if anything. If there is a master parameter then it will likely get passed along. If you are using the...
hello Enrico, suppose you have a stored procedure more or less like this: SET TERM ^ ; DECLARE PROCEDURE MYPROC(PARAM...optional) AS BEGIN FOR SELECT FIELDNAME...
I am running an update query in code. I construct the query manually and then run it using ExecSQL. But the update never seems to take place This is my code...
I finally got it! Thank you for your suggestions, it got me thinking. Most every thing was already set the way you described it. However it still took a ...
... The reason you are having problems getting DML to "take" is that you are using Cache methods. Caching applies to datasets, not DML statements, and it's...
Sure, you are welcome to do that. You just run into a lot of issues I worked hard on to solve. You can use my base class as code to learn from if nothing else....
Use the TIB_Dataset.CreateBlobStream() method instead of directly instantiating your own instance. Jason Wharton www.ibobjects.com ... Hi, I'm having trouble...
Dear IBO Users, As I have posted concerning the best practice on commiting. I didn't get much help from it. Hope this time everything will be clear for me. ...
Thanks Ann, for that positive advice. I'll follow it up. Is there any direct implementation of 'no_auto_undo' in IBObjects? Neville ... From: "Ann W....