Just looking to see if DB2 8.1.3 (on w2k) prepared statements are stored in some persistent pool for later retrieval (sometime outside the session where it was created).
In my php scripts, db2 runs pretty fast, except when creating/populating tables, and I was wondering if I would get a boost, if I were to deploy prepared statements through out my code.
For example. With PostgreSQL, its prepared statements only live within the session, and since performance isnt an issue, it may not be a good thing to use prepared statements (since most, if not all statements are not even repeated).
Hope that made sense...
Thanks