... Or, pending the next release, can you tell me what steps I could perform to disable the compiler debugging, without breaking any new code that I write, in...
Hi All, Has anyone been able to use the FindIndex function in TIB_StringList that is in TIB_Query? At present I want to be able to select a sorting field by...
... It's not that the list "is not sorted" that is causing the AV. The Sorted property puts the strings into ascending alphanumeric order if true; otherwise...
Hi Guys, I have a program with several thread running at the same time, each thread creates a tib_cursor with a query in sql like this: select * from My_table ...
Hi Alexandre I am surprised the problem is with .next itself. So - some fundamental questions Does the cursor have its own TIB_Connection and TIB_session...
... Sorted property puts the strings into ascending alphanumeric order if true; otherwise their order will be simply arrival sequence. So - if the Sorted...
FB 1.5 Embedded. I have some pretty easy to understand code where I get a generator value and insert a new record in a table--I do this for various tables. I...
... I gave Jason some code that worked for a while, but some recent updates regressed. Most of the "fix" is still there (see comment above "procedure...
I've seen this before and never got a real clear answer. One of the answers pertained to transactions which should never be the case as I understand it, ...
Hi Ed, ... Right. Generators are running outside of transaction control. But you can decrement a generator value by using a negativ number as increment....
... My guess is that you are combining IBO's built-in generator-fetching behaviour with your own, inadvertently, viz. a) If you have GeneratorLinks set for...
... that's what I thought. ... nope. never even crossed my mind--nor would I let code like that even be played with in my main application. (Anything of that...
... Hmmm, Ed, you need to clarify what the actual problem is that's being observed: Is it: a) the import utility seems to change (or not to change) the current...
... Helen - it SOUNDS like the generator is not actually being used? The numbers are being incremented and stored starting with the correct 'next number' given...
Is this particular user computer literate or has access to someone that are? I wouldn't suspect a an illiterate person to mess around with generators, but I...
... the import utility gets a new generator value (as posted before). It is the only place that the ID is accessed. ... the imported records seem to be getting...
... the import utility gets a new generator value (as posted before). It is the only place that the ID is accessed. ... the imported records seem to be getting...
... This sounds like it must be related to this--I do have GeneratorLinks set at the connection for table and the ID's causing the problem. But it only causes...
From: "Ed Dressel" <dressel@...> ... Ed, Does the import code call the generator to get the ID for each record it imports or does it only do it once in...
... If this (resetting the generator) ever actually happens it indicates a Firebird problem - no local genius will have the time to interfere with the...
Thanks for your thoughtful questions. ... It calls the generator each time to get the ID--the exact code was posted above, but here is how the local variable...
... no, because I get new values for new records from the generator. It is being increemented then being reverted. ... me too... ... I do on detail inserts....
... Sorry, Ed, but it's not being reverted unless you (unwisely or inadvertently) have code there that is making it so; or you have a user at that site with an...
... I searched my HD for references to GEN_PERSON_ID and Gen_ID just to check. No forgotten code, nothing causing the problem. ... I don't retain it. Code is...
I just stumbled across that again. I added a TIB_Cursor which was meant for inserting / updating some data, but I forgot to set the RequestLive property to...
Hi Lucas, long time, no auction! I don't think this is the reason for your insert/update problem, but one possible way to be allowed one insert and no update,...
I have the following situation: I enter a Cash value in an IB_Edit, then copy it to string. I then remove any spaces, R or $ signs code below: var PostEntry,...