Search the web
Sign In
New User? Sign Up
IBObjects · IB Objects support list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 30405 - 30434 of 44315   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
30405
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 Thompson
yhibasi
Offline Send Email
Apr 1, 2004
3:44 pm
30406
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...
Helen Borrie
helebor
Offline Send Email
Apr 1, 2004
4:01 pm
30407
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); ...
tractaylor
Offline Send Email
Apr 1, 2004
8:56 pm
30408
I think the AddConnection is only if you wish to have connections to multiple databases. For the single database FTransaction.IB_Connection := Connection; ...
Eric Tishler
etish2000
Offline Send Email
Apr 1, 2004
10:30 pm
30409
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...
etish2000
Offline Send Email
Apr 1, 2004
10:40 pm
30410
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...
Florian Hector
pizzateig2002
Offline Send Email
Apr 2, 2004
6:06 am
30411
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...
Enrico Raviglione
enricorav
Offline Send Email
Apr 2, 2004
9:04 am
30412
Hi to all, can i stop in some manner an SP that run on FireBird Server from my Client Apps ? Thanks, Enrico Raviglione....
Enrico Raviglione
enricorav
Offline Send Email
Apr 2, 2004
9:12 am
30413
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...
Salvatore Besso
salvatorebesso
Offline Send Email
Apr 2, 2004
11:41 am
30414
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...
Eric Tishler
etish2000
Offline Send Email
Apr 2, 2004
1:03 pm
30415
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...
Enrico Raviglione
enricorav
Offline Send Email
Apr 2, 2004
2:52 pm
30416
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
2:54 pm
30417
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
2:57 pm
30418
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
3:04 pm
30419
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
3:10 pm
30420
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
3:13 pm
30421
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...
michaelgaihede
Offline Send Email
Apr 2, 2004
3:14 pm
30422
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
3:15 pm
30423
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
3:23 pm
30424
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...
jwharton@...
kylixguru
Offline Send Email
Apr 2, 2004
3:25 pm
30425
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...
Salvatore Besso
salvatorebesso
Offline Send Email
Apr 2, 2004
3:36 pm
30426
Hi all, is it possible or correct to implement a service with IBO without using the IBS_Base Framework ? If yes, what's the catch ? Dimitris...
dchri2000
Offline Send Email
Apr 2, 2004
4:05 pm
30427
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...
Eric Tishler
etish2000
Offline Send Email
Apr 2, 2004
9:46 pm
30428
""Eric Tishler"" <etishler@...> wrote in message news:<9211DBA76BE969418E127E8F8C718C5815C5CB@...>... ... Applyupdates is only...
Don Gollahon
dgollahon2000
Offline Send Email
Apr 2, 2004
10:43 pm
30429
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 ...
Eric Tishler
etish2000
Offline Send Email
Apr 2, 2004
11:13 pm
30430
... 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...
Helen Borrie
helebor
Offline Send Email
Apr 2, 2004
11:54 pm
30431
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....
jwharton@...
kylixguru
Offline Send Email
Apr 3, 2004
1:11 am
30432
Use the TIB_Dataset.CreateBlobStream() method instead of directly instantiating your own instance. Jason Wharton www.ibobjects.com ... Hi, I'm having trouble...
jwharton@...
kylixguru
Offline Send Email
Apr 3, 2004
1:14 am
30433
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. ...
jtsiy
Offline Send Email
Apr 3, 2004
3:50 am
30434
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....
nevillerichards
neville@...
Send Email
Apr 3, 2004
7:42 am
Messages 30405 - 30434 of 44315   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help