Subject | RE: [IBO] Is TIBOTable Good? |
---|---|
Author | Svein Erling Tysvær |
Post date | 2001-03-14T08:17:29Z |
Welcome to IBO Jim,
For client/server databases you simply don't transfer all records of a
table to the client (except for very small tables). Hence, there's no
difference between using a TIBOTable and a TIBOQuery with SQL 'SELECT *
FROM <table>'.
Basically, as long as you transfer only records and fields of interest,
you're fine in C/S (but it may take some time for you to figure out that
most records are not interesting). Most of us prefer the native components
(TIB_*) over the dataset compatible (TIBO*) components unless we have to
cooperate with components that doesn't support native IBO, because it gives
us more control and options.
be pleased. IBO won Delphi Informants Best Database Connectivity award last
year, and Jason has informed us that the results to be published next month
will give the prize to IBO once again.
Set
>Will it be OK to use TIBOQuery ? Will this be an acceptable way and not badIt isn't TIBOTable in itself that is bad, it is the mindset it requires.
>in c/s ?
For client/server databases you simply don't transfer all records of a
table to the client (except for very small tables). Hence, there's no
difference between using a TIBOTable and a TIBOQuery with SQL 'SELECT *
FROM <table>'.
Basically, as long as you transfer only records and fields of interest,
you're fine in C/S (but it may take some time for you to figure out that
most records are not interesting). Most of us prefer the native components
(TIB_*) over the dataset compatible (TIBO*) components unless we have to
cooperate with components that doesn't support native IBO, because it gives
us more control and options.
>Thanks for the help I am very very new to IBO after being frustrated withIf you stick to IBO past the initial, frustrating learning curve, you will
>IBX and FIBPlus(this component is a total joke)
be pleased. IBO won Delphi Informants Best Database Connectivity award last
year, and Jason has informed us that the results to be published next month
will give the prize to IBO once again.
Set