Hello. Did ORM prevent from SQL Injection? If I have a model like:
<?php namespace Republika\Models; use Phalcon\Db\RawValue;
class Colors extends \Phalcon\Mvc\Model { /*
,it is safe to enter values to this model without checking it?
$text = $request->getPost("color");
$color = new Colors(); $color->text = $text; $color->save();
Wheter Phalcon secure model Colors from SQL injection? What will happen if I type x' OR 1=1; drop table .... ?