Postgresql
This commit is contained in:
8
src/Database/Query/PostgreSQL/Create.php
Normal file
8
src/Database/Query/PostgreSQL/Create.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace ProVM\Database\Query\PostgreSQL;
|
||||
|
||||
use ProVM\Implement\Database\Query;
|
||||
|
||||
class Create extends Query\Create
|
||||
{
|
||||
}
|
8
src/Database/Query/PostgreSQL/Delete.php
Normal file
8
src/Database/Query/PostgreSQL/Delete.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace ProVM\Database\Query\PostgreSQL;
|
||||
|
||||
use ProVM\Implement\Database\Query;
|
||||
|
||||
class Delete extends Query\Delete
|
||||
{
|
||||
}
|
8
src/Database/Query/PostgreSQL/Drop.php
Normal file
8
src/Database/Query/PostgreSQL/Drop.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace ProVM\Database\Query\PostgreSQL;
|
||||
|
||||
use ProVM\Implement\Database\Query;
|
||||
|
||||
class Drop extends Query\Drop
|
||||
{
|
||||
}
|
8
src/Database/Query/PostgreSQL/Insert.php
Normal file
8
src/Database/Query/PostgreSQL/Insert.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace ProVM\Database\Query\PostgreSQL;
|
||||
|
||||
use ProVM\Implement\Database\Query;
|
||||
|
||||
class Insert extends Query\Insert
|
||||
{
|
||||
}
|
8
src/Database/Query/PostgreSQL/Select.php
Normal file
8
src/Database/Query/PostgreSQL/Select.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace ProVM\Database\Query\PostgreSQL;
|
||||
|
||||
use ProVM\Implement\Database\Query;
|
||||
|
||||
class Select extends Query\Select
|
||||
{
|
||||
}
|
8
src/Database/Query/PostgreSQL/Truncate.php
Normal file
8
src/Database/Query/PostgreSQL/Truncate.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace ProVM\Database\Query\PostgreSQL;
|
||||
|
||||
use ProVM\Implement\Database\Query;
|
||||
|
||||
class Truncate extends Query\Truncate
|
||||
{
|
||||
}
|
8
src/Database/Query/PostgreSQL/Update.php
Normal file
8
src/Database/Query/PostgreSQL/Update.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace ProVM\Database\Query\PostgreSQL;
|
||||
|
||||
use ProVM\Implement\Database\Query;
|
||||
|
||||
class Update extends Query\Update
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user