Quick question, does Kohana (version 3) automatically escape data that is passed into ORM::factory..... (and everywhere else that has to do with the database)?

For example:

$thread = ORM::factory('thread', $this->request->param('id'));

Would the data passed in the second argument be auto-escaped before it goes in the SQL query or do I have to manually do it? Probably a stupid question and it's better to be safe than sorry, but yeah... I usually do manually escape the data, but I want to know if Kohana does this for me?

Thanks

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

It's auto-escaped. The only scenario where you have to worry about escaping is if you're writing your own SQL and inserting your data directly (by way of concatenation, for example), which you shouldn't be doing. The normal ways of querying a database in Kohana are parametrized queries (if you need to provide the SQL yourself), the query builder, and ORM, all of which handle escaping for you.

link|improve this answer
Can you show me where it says it escapes it? or did you look at the code? I wasn't able to find anything on the site when i looked. – Galen May 5 '10 at 4:38
@Galen: Sorry for the late response – see the docs for the query builder (which is what ORM uses internally): docs.kohanaphp.com/libraries/database/builder#limitations – Will Vousden May 16 '10 at 10:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.