Ejemplo n.º 1
0
<?php

namespace TORM;

Driver::$name = "postgresql";
Driver::$primary_key_behaviour = Driver::PRIMARY_KEY_SEQUENCE;
Driver::$limit_behaviour = Driver::LIMIT_APPEND;
Driver::$current_timestamp = "now()";
Driver::$numeric_column = "numeric";
Ejemplo n.º 2
0
Archivo: sqlite.php Proyecto: taq/torm
<?php

namespace TORM;

Driver::$name = "sqlite";
Driver::$primary_key_behaviour = Driver::PRIMARY_KEY_DELETE;
Driver::$limit_behaviour = Driver::LIMIT_APPEND;