Exemplo 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";
Exemplo n.º 2
0
Arquivo: sqlite.php Projeto: taq/torm
<?php

namespace TORM;

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