mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-22 04:39:55 +09:00
Prepare to support INSERT/UPDATE/DELETE queries, too
This commit is contained in:
parent
6d251dfbe1
commit
e3138f7278
5 changed files with 157 additions and 45 deletions
18
common/framework/parsers/dbquery/columnwrite.php
Normal file
18
common/framework/parsers/dbquery/columnwrite.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Parsers\DBQuery;
|
||||
|
||||
/**
|
||||
* ColumnWrite class.
|
||||
*/
|
||||
class ColumnWrite extends VariableBase
|
||||
{
|
||||
public $name;
|
||||
public $operation = 'equal';
|
||||
public $var;
|
||||
public $default;
|
||||
public $not_null;
|
||||
public $filter;
|
||||
public $minlength = 0;
|
||||
public $maxlength = 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue