Hacker News new | ask | show | jobs
by jrmenon 4511 days ago
How does this compare with Kohana?

http://kohanaframework.org/index

Note: I tend to use frameworks largely to enforce safe db queries. IIRC, Kohana does all the needed escaping transparently. Might seem like an overkill but it is better than relying on the discipline of individual developers.

1 comments

Kohana seems to have the structure in about the same way, but is more complicated and has some basic modules, whereas Kamele does not.

Kamele does have a nice Database class that handles the PDO-object in a MySQLi-like way of approching the object. Especially the Database::safeQuery() function will be interesting for you: https://github.com/goldenice/Kamele-Framework/blob/master/sy...

Thanks for the pointer here. Will explore it more closely.