Re:When to use "prepared" with and TADOQuery
Kirk,
i found that setting the prepared to True
really messes things up
heck sometimes the query doesn't run at all
so i stay far away from this mysterious beast
also be very carefull by setting the cursorlocation, i found that playing
with this in the same connection give strange results also, so stick to the
same cursorlocation for the same connection
(applies to Sql Server)
cu
marc
"Kirk Evans" <wkev...@alltel.net> schreef in bericht
news:3d18c5b5$1_1@dnews...
Quote
> with BDE queries, I would explicitly prepare a query if i was going to be
> using it again and again with just the parameter values changing.
> In reading the documentation on ADO queries, I am not so sure that this is
> necessary or desireable, but I really can't tell.
> I'm going to be stepping through one dataset, and doing an insert query
for
> each row. speed is an issue.
> Any thoughts?