コード例 #1
0
ファイル: sqlite3.php プロジェクト: egregor-dev/SatCMS
 function _sqlite_fixes(&$query)
 {
     $query = strings::replace(array('LOW_PRIORITY'), '', $query);
     // DELETE..LIMIT unsupported
     if (preg_match('@^DELETE@', $query)) {
         $query = preg_replace('@LIMIT \\d+(,\\s*\\d+)?@', '', $query);
     }
 }