Subject Prepare of SQL
Author Valdir Stiebe Junior
Hi,
how firebird work with different, but close sql
texts like these:

1. select * from sometable where id = :id
2. select * from sometable where id = 10
3. select * from sometable where id = 20
4. SELECT * FROM sometable where id = :id
5. select * from sometable where id = :id

It'll prepare every sql if sent in this order?

TIA.

Valdir.