1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-20 21:02:05 +02:00

- new DibiTable constructor

- moved "tricky clone" from DibiConnection::query to IDibiDriver::query
This commit is contained in:
David Grudl
2008-06-10 01:09:23 +00:00
parent 4e41f1641e
commit d12895102f
12 changed files with 26 additions and 31 deletions

View File

@@ -109,7 +109,7 @@ class DibiMsSqlDriver extends /*Nette::*/Object implements IDibiDriver
* Executes the SQL query.
*
* @param string SQL statement.
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -120,7 +120,7 @@ class DibiMsSqlDriver extends /*Nette::*/Object implements IDibiDriver
throw new DibiDriverException('Query error', 0, $sql);
}
return is_resource($this->resultset);
return is_resource($this->resultset) ? clone $this : NULL;
}

View File

@@ -158,7 +158,7 @@ class DibiMySqlDriver extends /*Nette::*/Object implements IDibiDriver
* Executes the SQL query.
*
* @param string SQL statement.
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -173,7 +173,7 @@ class DibiMySqlDriver extends /*Nette::*/Object implements IDibiDriver
$this->throwException($sql);
}
return is_resource($this->resultset);
return is_resource($this->resultset) ? clone $this : NULL;
}

View File

@@ -142,7 +142,7 @@ class DibiMySqliDriver extends /*Nette::*/Object implements IDibiDriver
* Executes the SQL query.
*
* @param string SQL statement.
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -153,7 +153,7 @@ class DibiMySqliDriver extends /*Nette::*/Object implements IDibiDriver
$this->throwException($sql);
}
return is_object($this->resultset);
return is_object($this->resultset) ? clone $this : NULL;
}

View File

@@ -115,7 +115,7 @@ class DibiOdbcDriver extends /*Nette::*/Object implements IDibiDriver
* Executes the SQL query.
*
* @param string SQL statement.
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -126,7 +126,7 @@ class DibiOdbcDriver extends /*Nette::*/Object implements IDibiDriver
$this->throwException($sql);
}
return is_resource($this->resultset);
return is_resource($this->resultset) ? clone $this : NULL;
}

View File

@@ -108,7 +108,7 @@ class DibiOracleDriver extends /*Nette::*/Object implements IDibiDriver
* Executes the SQL query.
*
* @param string SQL statement.
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -125,7 +125,7 @@ class DibiOracleDriver extends /*Nette::*/Object implements IDibiDriver
$this->throwException($sql);
}
return is_resource($this->resultset);
return is_resource($this->resultset) ? clone $this : NULL;
}

View File

@@ -118,7 +118,7 @@ class DibiPdoDriver extends /*Nette::*/Object implements IDibiDriver
* Executes the SQL query.
*
* @param string SQL statement.
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -135,7 +135,7 @@ class DibiPdoDriver extends /*Nette::*/Object implements IDibiDriver
$this->throwException($sql);
}
return FALSE;
return NULL;
} else {
$this->resultset = $this->connection->query($sql);
@@ -145,7 +145,7 @@ class DibiPdoDriver extends /*Nette::*/Object implements IDibiDriver
$this->throwException($sql);
}
return TRUE;
return clone $this;
}
}

View File

@@ -136,7 +136,7 @@ class DibiPostgreDriver extends /*Nette::*/Object implements IDibiDriver
*
* @param string SQL statement.
* @param bool update affected rows?
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -147,7 +147,7 @@ class DibiPostgreDriver extends /*Nette::*/Object implements IDibiDriver
throw new DibiDriverException(pg_last_error($this->connection), 0, $sql);
}
return is_resource($this->resultset) && pg_num_fields($this->resultset);
return is_resource($this->resultset) && pg_num_fields($this->resultset) ? clone $this : NULL;
}

View File

@@ -122,7 +122,7 @@ class DibiSqliteDriver extends /*Nette::*/Object implements IDibiDriver
* Executes the SQL query.
*
* @param string SQL statement.
* @return bool have resultset?
* @return IDibiDriver|NULL
* @throws DibiDriverException
*/
public function query($sql)
@@ -137,7 +137,7 @@ class DibiSqliteDriver extends /*Nette::*/Object implements IDibiDriver
throw new DibiDriverException($msg, sqlite_last_error($this->connection), $sql);
}
return is_resource($this->resultset);
return is_resource($this->resultset) ? clone $this : NULL;
}