class MySQLiDataSource_MariaDB extends MySQLiDataSource
{
public $FinalSort = array();
public function AddSortObject($fieldName='',$fieldOrder='')
{
$sortOrder = ($fieldOrder == "ASC" ? 0 : 2 );
$DataSourceSort = new DataSourceSort($fieldName, $fieldOrder, $sortOrder);
$this->FinalSort[] = $DataSourceSort ;
}
protected function IsInSortArray( &$DataSortObjNew )
{
foreach( $this->Sorts as $DataSortObj )
{
if( $DataSortObj->Field == $DataSortObjNew->Field )
{
return true;
}
}
return false ;
}
function GetData($_start=0,$_count=9999999)
{
$_tpl_select_command = "SELECT * FROM ({SelectCommand}) AS _TMP {where} {orderby} {groupby} {limit} ";
if( count( $this->FinalSort ) > 0 )
{
foreach( $this->FinalSort as $arrSort )
{
if( !$this->IsInSortArray( $arrSort ) )
{
$this->Sorts[] = $arrSort ;
}
}
}
$_where = "";
$_filters = $this->Filters;
for( $i=0; $i < sizeof($_filters); $i++)
{ $_where .= " and " . $this->GetFilterExpression($_filters[$i]); }
if( $_where != "" )
{ $_where = "WHERE ".substr($_where,5); }
$_orderby = "";
$_orders = $this->Sorts;
for($i=0;$i<sizeof($_orders);$i++)
{ $_orderby.=", ".$_orders[$i]->Field." ".$_orders[$i]->Order; }
if ($_orderby!="")
{ $_orderby = "ORDER BY ".substr($_orderby,2); }
$_groupby = "";
$_groups = $this->Groups;
for($i=0;$i<sizeof($_groups);$i++)
{
$_groupby.=", ".$_groups[$i]->Field;
}
if ($_groupby!="")
{
$_groupby = "GROUP BY ".substr($_groupby,2);
}
$_limit = "LIMIT ".$_start." , ".$_count;
$_select_command = str_replace("{SelectCommand}",$this->SelectCommand,$_tpl_select_command);
$_select_command = str_replace("{where}",$_where,$_select_command);
$_select_command = str_replace("{orderby}",$_orderby,$_select_command);
$_select_command = str_replace("{groupby}",$_groupby,$_select_command);
$_select_command = str_replace("{limit}",$_limit,$_select_command);
$_result = mysqli_query($this->_Link, str_replace(';', ' ', $_select_command) );
$_rows = array();
if( $_result ) {
while ($_row = mysqli_fetch_assoc($_result))
{
foreach ($_row as $_column => & $_value)
$_value = $this->getMappedValue($_value, $_column);
array_push($_rows,$_row);
}
}
return $_rows;
}
}