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 29038 - 29067 of 44319   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
29038
hello Jason, first of all Happy New Year to all and thank you for your quick reply. ... No, as said in my previous message the procedure scans a table with a ...
Salvatore Besso
salvatorebesso
Offline Send Email
Jan 1, 2004
3:14 pm
29039
... Helen, thank you for the clear explanation. The exception was due to the code in the afterpost event that, indirectly, changed back the dataset state to...
Antonio Avrini
antonio@...
Send Email
Jan 1, 2004
4:20 pm
29040
Hi there! I Need to now when can I access to IBO Community with Trustware, because in source.ibobjects.com(....) I see a message of new system to access that....
Héctor Mansilla
hectormansilla@...
Send Email
Jan 2, 2004
3:09 am
29041
Hello, I use the TIB_SchemaCache to readout the fieldNames of a database table. How can I find out their FieldTypes(Integer/VarChar...) and FieldLength ? Hm,...
Ulrich
ulrich_groffy
Offline Send Email
Jan 2, 2004
5:25 pm
29042
Can anyone direct me to any in-depth information on getting started with database replication and IBO objects/Interbase. I want to accomplish two things. 1....
Matt Nielsen
manielsen2002
Online Now Send Email
Jan 2, 2004
6:29 pm
29043
I've noticed that the new version of IBO now populates the origin under all circumstances. I use this field for the same purpose that IBO does to store the...
Matt Nielsen
manielsen2002
Online Now Send Email
Jan 2, 2004
6:41 pm
29044
... The IB_RPL.dpr project in your IBO root directory is a complete simple replicator project in itself. Look at all the IB_RPL* bits and pieces for scripts,...
Helen Borrie
helebor
Offline Send Email
Jan 2, 2004
9:22 pm
29045
working with tib_cursor's & tib_query'ies - how to check, is dataset empty? query has IsEmpty, but curson doesn't - have tried RowNum, but this failed ;) how...
Gediminas
gedis_lt
Offline Send Email
Jan 4, 2004
10:31 pm
29046
Hello, I have just spent an inordinate amount of time just to make a simple demo program work. Its particularity was that I had two IB_Session components on a...
Nando Dessena
nandod2ita
Offline Send Email
Jan 4, 2004
10:45 pm
29047
Hi Gediminas, ... IsEmpty is introduced in TIB_BDataset because it doesn't make much sense for non-buffered datasets. The only way to find out if the set is...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jan 4, 2004
10:55 pm
29048
Hi everyone, We've noticed two errors when using the TIBOStoredProc component with Interbase 5.6 - sometimes we will get a sqlda error when running a stored...
Ben Daniel
ben_daniel81
Offline Send Email
Jan 5, 2004
3:07 am
29049
... For TIB_Cursors I use: EOF AND BOF. If this is true, it's empty. Luc....
Lucas Franzen
biber_et_luc
Offline Send Email
Jan 5, 2004
9:02 am
29050
How to "tell" TIBODatabse that I "want" to use fbclient.dll instead of gds32.dll? Matej...
Matej Golob
matej1602
Offline Send Email
Jan 5, 2004
10:09 am
29051
Matej, M> How to "tell" TIBODatabse that I "want" to use fbclient.dll instead of M> gds32.dll? unit usefbclient; interface implementation uses IB_Constants; ...
Nando Dessena
nandod2ita
Offline Send Email
Jan 5, 2004
10:18 am
29052
... If you have the source code, you can replace the value in the constant IB_GDS32. If not, create a new unit IB_SetLibFb15.pas as below (any name you prefer)...
Helen Borrie
helebor
Offline Send Email
Jan 5, 2004
10:22 am
29053
Hello, please how can I reconnect do DB (FB1.5 RC7) when the connection has been lost? I implemented an TIBODatabase.OnError event, where it looks a bit like...
abedna2000
Offline Send Email
Jan 5, 2004
12:11 pm
29054
we have a sbs2003 server running firebird 1.03.972, and has been fine till we restarted it over xmas, now when we use IBOdatabase connection or anything come...
colincoleman2002
colincoleman...
Offline Send Email
Jan 5, 2004
1:35 pm
29055
... It would be ok, but I'm working with the generic class (it handles cursor & query): bool CanEdit(TIB_Dataset * pDataset) { ...... } If I would use...
Gediminas
gedis_lt
Offline Send Email
Jan 5, 2004
2:14 pm
29056
Hello, Has this problem been resolved? I am assuming this is a selectable SP? How many records are returned, 1 or more. What does the SP's DML look like? How...
ronanvanriet
Offline Send Email
Jan 5, 2004
3:06 pm
29057
Hi, ... Please post your problem on the Firebird-Support group. It is off-topic for IBO, since it isn't related to IBO. -- Best regards, Daniel Rail Senior...
Daniel Rail
danielrail
Offline Send Email
Jan 5, 2004
3:11 pm
29058
Hello Luc, ... Does this also work _before_ you have tried to fetch records, i.e. before using (API)First or Last? How can the Cursor know it's EOF if it...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jan 5, 2004
4:51 pm
29059
Hello Gediminas, ... You could do this, then: bool __fastcall CanEdit( TIB_Dataset *pDataset ) { TIB_BDataset *pBD = dynamic_cast< TIB_BDataset* >( pDataset );...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jan 5, 2004
5:03 pm
29060
Hi, I'm using IBO and RaveReport for build my report, but it seems to be very slow to print using IBO components. I did tests using Dbxpress and it's works...
toninhonunes
Offline Send Email
Jan 5, 2004
11:41 pm
29061
Hello again, ... I tried out the "Bof and Eof" test on a cursor of mine. It works, but _only_ if you explicitly Open the cursor first. Normally you don't do ...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jan 6, 2004
12:46 am
29062
Hi Paul, ... Of course I'll do a FIRST first ;-) In fact it always looks like: with myCursor do begin if not Prepared then Prepare; First; if EOF AND BOF then ...
Lucas Franzen
biber_et_luc
Offline Send Email
Jan 6, 2004
1:18 am
29063
Hello Luc, ... Ah - I see: First behaves differently from APIFirst in this respect. After APIFirst on an empty dataset, Eof is true but Bof false. Anyhow,...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jan 6, 2004
2:01 am
29064
Hi Gediminas, ... Wrong. I tested with APIFirst and assumed First would give the same result. But as Luc wrote (and I just verified it -- never trust a fellow...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jan 6, 2004
2:11 am
29065
... Yes. Grtz, PV...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jan 6, 2004
2:20 am
29066
... The test would be pointless. Presumably, you want to know whether the query returns one or more rows. There is no buffer for IB_Cursor so all you really...
Helen Borrie
helebor
Offline Send Email
Jan 6, 2004
3:42 am
29067
... Please send a private request with a read receipt activated. I don't get to them every day. I expect people will make do with the evaluation version until...
Jason Wharton
kylixguru
Offline Send Email
Jan 6, 2004
6:08 am
Messages 29038 - 29067 of 44319   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