1
0
mirror of https://github.com/dg/dibi.git synced 2025-10-20 17:32:50 +02:00

removed NClass

This commit is contained in:
David Grudl
2007-12-11 07:28:55 +00:00
parent 2c8906e7c4
commit 041f059408
18 changed files with 109 additions and 139 deletions

View File

@@ -157,7 +157,7 @@ class DibiMySqlDriver extends NObject implements DibiDriverInterface
/**
* Executes the SQL query
*
* @param string SQL statement.
* @param string SQL statement.
* @return bool have resultset?
* @throws DibiDriverException
*/
@@ -241,8 +241,8 @@ class DibiMySqlDriver extends NObject implements DibiDriverInterface
/**
* Format to SQL command
*
* @param string value
* @param string type (dibi::FIELD_TEXT, dibi::FIELD_BOOL, dibi::FIELD_DATE, dibi::FIELD_DATETIME, dibi::IDENTIFIER)
* @param string value
* @param string type (dibi::FIELD_TEXT, dibi::FIELD_BOOL, dibi::FIELD_DATE, dibi::FIELD_DATETIME, dibi::IDENTIFIER)
* @return string formatted value
* @throws InvalidArgumentException
*/
@@ -261,9 +261,9 @@ class DibiMySqlDriver extends NObject implements DibiDriverInterface
/**
* Injects LIMIT/OFFSET to the SQL query
*
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void
*/
public function applyLimit(&$sql, $limit, $offset)