in reply to Re: Code factory
in thread Code factory

It's also important to remember to use parameters when using prepare_cached.
select * from table where lname = ?
rather than
select * from table where lname = $foo
You should cache one statement rather than many small variations.