mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 19:42:15 +09:00
Create basic structure of XML query
This commit is contained in:
parent
c97b161e42
commit
20025077f7
11 changed files with 303 additions and 8 deletions
18
common/framework/parsers/dbquery/query.php
Normal file
18
common/framework/parsers/dbquery/query.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Parsers\DBQuery;
|
||||
|
||||
/**
|
||||
* Query class.
|
||||
*/
|
||||
class Query
|
||||
{
|
||||
public $name;
|
||||
public $alias;
|
||||
public $type;
|
||||
public $tables = array();
|
||||
public $columns = array();
|
||||
public $conditions = array();
|
||||
public $groupby = null;
|
||||
public $navigation = null;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue