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...
Show off your group to the world. Share a photo of your group with us.

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 23421 - 23450 of 44315   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
23421
Thanks Helen, but my problem is that while the event "ReceivedItem" is fired for the table with the same keylinks, it's not fired in the table that is a...
Marco Menardi <mmenaz...
mmenaz
Offline Send Email
Feb 1, 2003
8:24 am
23422
... Marco, I can't tell where you are with this setup. Are you using the DMLCacheFlags settings on the datasets? TIB_DMLCacheFlags = ( dcfAnnounceEdit, ...
Helen Borrie
helebor
Offline Send Email
Feb 1, 2003
11:01 am
23423
Shame on me :(( My "base table editing form" had a transaction component that, I don't know why, had a tiConcurrency isolation level :( I've changed it to...
Marco Menardi <mmenaz...
mmenaz
Offline Send Email
Feb 1, 2003
3:28 pm
23424
Hi Marco, ... my small test application based on your initial post works also with TIB_Transaction.AutoCommit = True, so I guess an explicit commit isn't...
Thomas Steinmaurer
iblogmanager
Offline Send Email
Feb 1, 2003
6:48 pm
23425
Are the two dataset linked with two different transaction components? My "test app" that I've build to isolate the problem, does not work on post, only with...
Marco Menardi <mmenaz...
mmenaz
Offline Send Email
Feb 1, 2003
9:42 pm
23426
... Yes. The changeable dataset uses a TIB_Transaction with AutoCommit:=True and IsolationLevel:=tiConcurrency The recipient dataset uses a TIB_Transaction...
Thomas Steinmaurer
iblogmanager
Offline Send Email
Feb 1, 2003
9:48 pm
23427
You are absolutely right, my changeable were set with autocommit to false. Maybe while experimentig I've changed that :( It's time I sleep for a long, long...
Marco Menardi <mmenaz...
mmenaz
Offline Send Email
Feb 1, 2003
10:37 pm
23428
A customer of my has observed a strange behavior, and I have reproduced it. I have a TIBOTable. It's key field (CUSTID) is, of course, a required field. I...
Joe Martinez
jmartine3
Offline Send Email
Feb 2, 2003
8:49 am
23429
I've a query like: select a, b, c from myselectproc(:myparm) the UpdateSQL is like: execute procedure myspupdate( :myparam, :a, :b, :c) if I assign the...
Marco Menardi <mmenaz...
mmenaz
Offline Send Email
Feb 2, 2003
5:10 pm
23430
If cust_id is a decimal (18,2) , you might have run into simular difficulties I expenrienced with TIBOTable. Jason will include my fix or modified fix in next...
hans
hans@...
Send Email
Feb 2, 2003
6:37 pm
23431
... My CUSTID is an Integer. -Joe...
Joe Martinez
jmartine3
Offline Send Email
Feb 2, 2003
9:22 pm
23432
... Could it be a typo? myparm or myparAm? Helen...
Helen Borrie
helebor
Offline Send Email
Feb 2, 2003
9:32 pm
23433
No, not a typo :) Here I wrote a sample, just to make clear the situation. In the real query field names are taken with a copy&paste, and double checked, and...
Marco Menardi <mmenaz...
mmenaz
Offline Send Email
Feb 2, 2003
10:00 pm
23434
... Oh yes, of course! You are hoping that it will automatically use the same argument because the parameter names match? I'm sure that the binding works on...
Helen Borrie
helebor
Offline Send Email
Feb 2, 2003
10:33 pm
23435
Helen, what do you think for IBO, if not Row.ByName() column match is found, try with Params[]? Will it be a easy and positive improvement, or you can see some...
Marco Menardi <mmenaz...
mmenaz
Offline Send Email
Feb 2, 2003
11:15 pm
23436
... Keys ... Hi Helen, Sorry, my mistake. Yes, it actually is an insert. The user enters an ID number, which is the key field, then enters the values for all...
Jane Obenza
jobenza02
Offline Send Email
Feb 3, 2003
3:03 am
23437
... Add an internal field to be used as the primary key and use a generator for it. The user should never see this internal field. What you want to do is...
Raymond Kennington
raymond19562002
Offline Send Email
Feb 3, 2003
3:16 am
23438
... I wouldn't allow it at all, of course...I would have a use-inaccessible generated key which gets written into the Insert buffer via GeneratorLinks, or on...
Helen Borrie
helebor
Offline Send Email
Feb 3, 2003
4:25 am
23439
... GeneratorLinks, ... content ... My mistake again. I didn't mention that my ID number key field is just part of the composite key of my table (along w/...
Jane Obenza
jobenza02
Offline Send Email
Feb 3, 2003
6:55 am
23440
... Why need starts transaction always before prepare? The instructions sequence below is wrong? with IB_Cursor do begin //*** here ib_transaction.started is...
Fabio Bot <fabiobot@....
fabiobot
Offline Send Email
Feb 3, 2003
12:32 pm
23441
... Fabio> Why need starts transaction always before prepare? The Fabio> instructions sequence below is wrong? Because *anything* you can do with a Firebird...
Lele Gaifax
lelegaifax
Offline Send Email
Feb 3, 2003
12:58 pm
23442
Like most things, a prepare can only happen within a transaction. Jason knows that this is necessary, and has made it so that the prepare starts the...
Svein Erling Tysvaer
svein_erling
Offline Send Email
Feb 3, 2003
1:31 pm
23443
... through ... way ... Of course, but this transaction is the physical transaction that exists and is active. The prepare method has opened this transaction....
Fabio Bot <fabiobot@....
fabiobot
Offline Send Email
Feb 3, 2003
1:35 pm
23444
Hi, Is there any way I can access (read and write) the SQL plan for the TIBOQuery? The optimizer comes up with some horrible one and if I do not change it I...
hubert_krukowski <hub...
hubert_kruko...
Offline Send Email
Feb 3, 2003
2:29 pm
23445
... When you change the query for the grid by changing the order for sorting, first prepare it and then use the IB_Query.SQLPlan property to provide your own....
Raymond Kennington
raymond19562002
Offline Send Email
Feb 3, 2003
4:35 pm
23446
... sorting, first ... your own. (I ... SQLPlan is available in IB_Query but not in IBOQuery I am using. I have to use IBOQuery as it is a TDataset descendant...
hubert_krukowski <hub...
hubert_kruko...
Offline Send Email
Feb 3, 2003
4:54 pm
23447
I apologize for leaving off my specs: This is using IBO 4.2.I, Firebird 1.0. I had moved from TTables to TIBOTables, initially. These are created at design...
chris_michalec <Cmich...
chris_michalec
Offline Send Email
Feb 3, 2003
6:22 pm
23448
... (I think Firebird's optimiser has been improved significantly, but that won't help you unless you switch.) IBOQuery has the property Plan, instead of...
Raymond Kennington
raymond19562002
Offline Send Email
Feb 3, 2003
6:41 pm
23449
... Alternatively: You should also try to _remove_ the index that is used for sorting (if this does not also remove indexes used in the WHERE clause. Even...
Aage Johansen
megselv2
Offline Send Email
Feb 3, 2003
7:22 pm
23450
... OK, but we can't guess it for you, either. :-( Some troubleshooting suggestions: 1. Trying to mix TDataset-compatible (TIBO) and native IBO (TIB_) ...
Helen Borrie
helebor
Offline Send Email
Feb 3, 2003
9:47 pm
Messages 23421 - 23450 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