Subject | Re: [IBO] Programming question |
---|---|
Author | Tom Deprez |
Post date | 2001-12-08T21:07:32Z |
I'm not working with a Grid or anything like that, So the Query isn't in sync with what I want to delete.
I'm talking about such kinds of queries. eg:
I've to delete a certain record from the database in this way
delete from holidays where holiday_date = ....
In order to do this, I've to put that in a TIBOQuery.
Other question. What does 'prepare' exactly?
I know prepare means to speed-optimize and put it ready for execution. And that you've to reprepare it when you change the sql-statement. But do you've to prepare a query again when you put another value to a parameter in the query? Basically you then change the query again (because at server side, the query is in fact a string) and does should be prepared again. But is my assumption correct?
Tom.
I'm talking about such kinds of queries. eg:
I've to delete a certain record from the database in this way
delete from holidays where holiday_date = ....
In order to do this, I've to put that in a TIBOQuery.
Other question. What does 'prepare' exactly?
I know prepare means to speed-optimize and put it ready for execution. And that you've to reprepare it when you change the sql-statement. But do you've to prepare a query again when you put another value to a parameter in the query? Basically you then change the query again (because at server side, the query is in fact a string) and does should be prepared again. But is my assumption correct?
Tom.
----- Original Message -----
From: Kaputnik
To: IBObjects@yahoogroups.com
Sent: Saturday, December 08, 2001 9:56 PM
Subject: RE: [IBO] Programming question
Maybe I misunderstand completely,
but all IBOQueries are unlike the TQuery from Delphi/BDE are completely
"live" automatically when RequestLive is set to true and certain
prerequisites are not violated, so there is no need to do anything at all to
be able to insert, select update and delete records with one component
completely.
A IBOQuery is a Dataset, similar to Entity Beans ins Java or Persistent
Business Objects, so they are abstracxt layers to represent data from a
databases. This means a dataset will allow you to work with data just like
an object, and this meas that you can insert(create), change its properties
(update) or delete it. No need to create several Queries for this.
Cu,
Nick Josipovic
CRM Administration
BIT-Institute
Prof. Dr. Franz Steffens
Schloss
68163 Mannheim
Germany
Phone: ++49 621 181-1621
Fax: ++49 621 181-1618
mailto:nick.josipovic@...
> -----Original Message-----
> From: zifnabbe [mailto:zifnabbe@...]
> Sent: Saturday, December 08, 2001 8:55 PM
> To: IBObjects@yahoogroups.com
> Subject: [IBO] Programming question
>
>
> Hi,
>
> If you need to use queries to delete or insert records, do you then
> usually use two TIBOQuery components? Or do you use one and do you
> change the query statement?
> Or are there other methods? (I can imagin that at a certain time,
> there are a lot of TIBOQueries floating around)
>
> What is the general approach for such a thing?
>
> Tom.
>
>
___________________________________________________________________________
IB Objects - direct, complete, custom connectivity to Firebird or InterBase
without the need for BDE, ODBC or any other layer.
___________________________________________________________________________
http://www.ibobjects.com - your IBO community resource for Tech Info papers,
keyword-searchable FAQ, community code contributions and more !
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]