1
0
mirror of https://github.com/dg/dibi.git synced 2025-09-01 18:12:51 +02:00

Compare commits

..

79 Commits
v2.0.2 ... v2.1

Author SHA1 Message Date
David Grudl
cd7362efa6 Released version 2.1.3
This release marks the end of life of 2.1 series.
2015-01-13 05:56:52 +01:00
Petr BAGR Smrkovský
fa342fd240 DibiResult: float detection locale fix [Closes #154] 2015-01-13 05:53:54 +01:00
Pavel Zelezny
2277896109 Oracle use double quotes for escaping 2015-01-13 05:53:54 +01:00
Rossler Jan
f9c9003fc1 PostgreSQL: fixed identifier escaping in reflection. 2015-01-13 05:53:53 +01:00
David Grudl
12bebf8049 Released version 2.1.2 2014-05-13 17:24:59 +02:00
David Grudl
8a2f09033a updated examples, SQlite3 is used instead of SQLite2 2014-05-13 17:24:59 +02:00
David Grudl
ca839c5fbf bridges: changed file structure 2014-05-13 17:01:38 +02:00
David Grudl
2890690133 typos 2014-05-13 17:01:37 +02:00
David Grudl
3c8ceebe27 updated test support files 2014-05-13 17:01:37 +02:00
Emmanuel еΜanwʬĔbdƎv
8ed72797e3 readme.md: typos 2014-05-13 17:01:36 +02:00
Caspern
8ddbb41a1f .gitattributes: ignoring some paths when downloading from github 2014-05-13 17:01:36 +02:00
Ciki
1dc57bad85 fix casting to float
Now, when sql returns float from (0,1) interval, e.g. '.842' - the decimal part is missing & it won't get cast to float.
This is fix for that situation
2014-05-13 17:01:35 +02:00
David Grudl
6016f21ad4 DibiRow: null time checking consistent with DibiResult 2014-05-13 17:01:34 +02:00
Ondrej Brablc
d75e605645 Avoid error handler invocation 2014-05-13 17:01:34 +02:00
David Grudl
fa5b7678f4 phpDoc simplified & typos 2014-05-13 17:01:23 +02:00
David Grudl
2c3fe68c6c Released version 2.1.1 2013-10-16 21:39:29 +02:00
Jan Tvrdik
008371f3e7 composer.json: fix compatibility with dg/dibi requirements 2013-10-16 21:37:29 +02:00
David Grudl
105327f8e6 typos 2013-10-16 21:37:29 +02:00
David Grudl
d04eb76abb typos & whitespace 2013-10-16 21:37:26 +02:00
David Grudl
0b49f7da94 added examples to readme.md 2013-10-16 21:37:11 +02:00
Rossler Jan
0884cd4007 DibiResult: fixed illegal offset type in fetchPairs. 2013-10-16 21:34:09 +02:00
Miloslav Hůla
acc6ecb0d2 DibiResult: fixed normalization of time when begins by 00: 2013-10-16 21:34:08 +02:00
Jáchym Toušek
b21d592e07 Fixed usage of deprecated parameter 2013-10-16 21:34:08 +02:00
David Grudl
dc4fe8b398 Released version 2.1.0 2013-06-23 02:34:14 +02:00
David Grudl
de7bf09eca improved readme & license 2013-06-23 02:34:14 +02:00
David Grudl
aac5ae9932 typos 2013-06-23 02:34:13 +02:00
David Grudl
d055eefb9a Revert "updated Nette\Debugger"
This reverts commit c08918e034.
2013-06-23 02:12:51 +02:00
David Grudl
93d996ef6d DibiNettePanel is compatible with Nette Framework 2.1 [Closes #97] 2013-06-23 01:56:08 +02:00
David Grudl
e5b2ca46d8 added extension for Nette Framework 2.1 (and examples) [Closes #93] 2013-06-23 01:56:07 +02:00
David Grudl
c305b8b674 Nette extension renamed to DibiNette20Extension and moved to bridges/Nette 2013-06-22 18:29:36 +02:00
David Grudl
1382a1021f all file names correspond with class name 2013-06-22 18:29:35 +02:00
David Grudl
d01ede6aee DibiDatabaseInfo: updated patterns in detectType() [Closes #95] 2013-06-22 16:39:54 +02:00
David Grudl
b94b97873a Merge pull request #96 from jasir/firebird-getrowcount
Firebird driver: getRowCount throws NotSupportedException
2013-06-12 05:05:46 -07:00
jasir
849b9b66fa Firebird driver: getRowCount throws NotSupportedException 2013-06-11 17:56:52 +02:00
David Grudl
41c150932c Merge pull request #92 from hrach/patch-1
Fixed toggling explain for latest Nette Framework
2013-05-24 02:10:42 -07:00
Jan Škrášek
981c78a078 Fixed toggling explain for latest Nette Framework 2013-05-24 01:42:38 +02:00
David Grudl
cbdcc3f832 Merge pull request #85 from foglcz/bug-84
Throw entire callstack for interbase-based databases.
2013-04-11 02:39:31 -07:00
David Grudl
593aa0351a Merge pull request #83 from milo/sqlsrv-fixes
Sqlsrv fixes
2013-04-11 02:37:46 -07:00
Pavel Ptacek
9b4d58878c Throw entire callstack for interbase-based databases. The errors given by firebird are multiline, exceptions get thrown from inside the logic. (.*) matches everything up until first line by default - this mitigates the problem and mathes the entire rest of the string (= including multilines) 2013-04-11 04:51:09 +02:00
Miloslav Hůla
0ebe7ad84f DibiMsSql2005Driver: fixed identifier escaping
Annoted link to MS SQL doc does not talk about open bracket '[' escaping, only closing bracket ']'.

dibi::query('CREATE TABLE %n (id INT)', 'abc[]def');
 - old: creates table 'abc[[]def'
 - new: creates table 'abc[]def'
2013-04-10 12:08:11 +02:00
Miloslav Hůla
4ea885f2b9 DibiPdoDriver: added identifier escaping for sqlsrv 2013-04-10 12:08:11 +02:00
Miloslav Hůla
3634673ffa DibiPdoDriver: applyLimit() for sqlsrv driver
Added table alias has been tested with MS SQL Server 2012 directly and over ODBC.
2013-04-10 12:08:10 +02:00
Miloslav Hůla
8e5898a11b DibiMsSql2005Driver: default charset set to UTF-8
If charset is not specified in config, NULL is passed as connection option and 'Invalid value type for option CharacterSet was specified.  String type was expected.' is thrown.
2013-04-10 12:07:27 +02:00
David Grudl
2c9cbe9b0c DibiResult: fixed detection of "123.000" as float [Closes #67] 2013-04-03 14:38:12 +02:00
David Grudl
326376159f composer: renamed to dibi/dibi 2013-04-03 14:36:18 +02:00
David Grudl
d09fc7d837 MySQLI: mysqli_affected_rows() returns -1 on error [Closes #80] 2013-04-03 13:57:48 +02:00
Teyras
388067cb5d DibiResult: added setRowFactory() [Closes #26] 2013-04-02 00:51:57 +02:00
David Grudl
8a07e1fbe4 renamed directory tools -> vendor 2013-03-15 05:14:09 +01:00
David Grudl
ff675e32d1 Merge pull request #81 from HosipLan/bugfix/notice
PdoDriver: fix notice undefined index native_type
2013-03-14 05:59:34 -07:00
Filip Procházka
cbca529ff8 PdoDriver: fix notice undefined index native_type 2013-03-01 17:31:21 +01:00
Daniel Kouba
9001afe7ca MSSQL2005 driver: autoincrement determination fixed 2012-12-30 02:56:21 +01:00
Daniel Kouba
16b254fce1 MSSQL2005 applyLimit fixed
Conflicts:
	dibi/drivers/mssql2005.php
	dibi/drivers/mssql2005.reflector.php
2012-12-16 23:42:09 +01:00
David Grudl
10fdecfc13 updated examples 2012-12-16 23:39:32 +01:00
David Grudl
322a110f75 Merge pull request #75 from whipsterCZ/patch-3
Column size is string or NULL
2012-12-16 14:37:50 -08:00
Daniel Kouba
188acf1f76 Column size is string or NULL
Issue #74
2012-12-11 15:09:21 +01:00
David Grudl
8cda1401ff Merge pull request #70 from DragonJake/cli-enhancements
DibiResult::dump() a obarvování v CLI módu
2012-12-04 05:50:44 -08:00
David Grudl
9a605573a2 released 2.0.1 2012-12-04 14:40:06 +01:00
David Grudl
d09e490f1b reflectors: table names are correctly escaped 2012-12-04 14:35:53 +01:00
David Grudl
865e44c30f DibiTranslator: number of decimal points changed to 10 2012-12-04 14:22:50 +01:00
David Grudl
c08918e034 updated Nette\Debugger 2012-12-04 14:15:32 +01:00
David Grudl
c385888f9a dibi::$sql is always set 2012-12-04 14:15:31 +01:00
David Grudl
6c82e777e1 added Nette\Tester 2012-12-04 14:15:31 +01:00
David Grudl
b4de8daed3 fixed invalid escaping sequences in double quoted strings, used \z instead of $ 2012-12-04 14:15:31 +01:00
Daniel Kouba
7696fc36e1 Added MSSQL 2005 Reflector 2012-12-04 14:15:26 +01:00
Jakub Krčma
627c102add dibi: colorized SQL dump in CLI mode 2012-10-03 23:08:10 +02:00
Jakub Krčma
6ced2d3af2 DibiResult: added simple dump in CLI mode 2012-10-03 23:06:54 +02:00
Jakub Krčma
927fc858d2 MySQL & MySQLi: added timezone configuration option 2012-10-03 21:13:03 +02:00
Jirka Chadima
f355b8ede7 Allow forcing a persistent connection via driver configuration 2012-08-28 15:38:12 +02:00
David Grudl
dfda0b4d96 DibiConnection: fixed loadFromFile() and loading file without semicolon [Closes #63] 2012-04-05 20:08:51 +02:00
Jan Marek
c1537c1d36 added composer.json 2012-03-30 22:15:57 +02:00
David Grudl
973c2452a7 DibiTranslator: number of decimal points changed to 20 2012-02-29 00:08:31 +01:00
David Grudl
38742aee57 Merge pull request #61 from milo/fix-fire-logger
DibiFirePhpLogger: Fix undefined property access
2012-02-12 14:32:15 -08:00
Miloslav Hůla
b2744174f7 DibiFirePhpLogger: Fix undefined property access 2012-02-11 17:36:15 +01:00
David Grudl
9b7b964696 numOfQueries and totalTime moved to profilers 2012-02-06 18:23:15 +01:00
David Grudl
06642ec9ee Merge pull request #56 from Andrewsville/multiple-connections-nettepanel-fix
Fixed NettePanel output for multiple connections
2012-02-06 09:04:27 -08:00
David Grudl
a2ad4faf49 Merge pull request #58 from milo/fix-mssql
Fix DibiMsSql2005Driver::getResultColumns()
2012-02-06 07:25:27 -08:00
Miloslav Hůla
4be92b62f8 typos 2012-02-06 13:55:40 +01:00
Miloslav Hůla
52986705d8 Fix DibiMsSql2005Driver::getResultColumns() 2012-02-06 13:43:17 +01:00
Ondrej Nespor
0c51f6c9ea Fixed NettePanel output for multiple connections 2012-02-05 01:25:03 +01:00
76 changed files with 1545 additions and 3088 deletions

4
.gitattributes vendored Normal file
View File

@@ -0,0 +1,4 @@
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
tests/ export-ignore

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/vendor
/composer.lock

View File

@@ -1,16 +1,25 @@
{ {
"name": "dg/dibi", "name": "dibi/dibi",
"description": "Dibi is Database Abstraction Library for PHP 5.", "description": "Dibi is Database Abstraction Library for PHP 5.",
"keywords": ["dibi", "database", "dbal", "mysql", "postgresql", "sqlite", "mssql", "oracle", "access", "pdo", "odbc"], "keywords": ["database", "dbal", "mysql", "postgresql", "sqlite", "mssql", "oracle", "access", "pdo", "odbc"],
"homepage": "http://dibiphp.com/", "homepage": "http://dibiphp.com/",
"license": ["BSD-3", "GPLv2", "GPLv3"], "license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [ "authors": [
{ {
"name": "David Grudl", "name": "David Grudl",
"homepage": "http://davidgrudl.com" "homepage": "http://davidgrudl.com"
} }
], ],
"require": {
"php": ">=5.2.0"
},
"require-dev": {
"nette/tester": "~1.1"
},
"replace": {
"dg/dibi": "self.version"
},
"autoload": { "autoload": {
"classmap": ["dibi/"] "classmap": ["dibi/"]
} }
} }

View File

@@ -10,15 +10,14 @@
*/ */
/** /**
* Dibi extension for Nette Framework. Creates 'connection' service. * Dibi extension for Nette Framework 2.0. Creates 'connection' service.
* *
* @author David Grudl * @author David Grudl
* @package dibi\nette * @package dibi\nette
* @phpversion 5.3 * @phpversion 5.3
*/ */
class DibiNetteExtension extends Nette\Config\CompilerExtension class DibiNette20Extension extends Nette\Config\CompilerExtension
{ {
public function loadConfiguration() public function loadConfiguration()
@@ -47,7 +46,7 @@ class DibiNetteExtension extends Nette\Config\CompilerExtension
$panel = $container->addDefinition($this->prefix('panel')) $panel = $container->addDefinition($this->prefix('panel'))
->setClass('DibiNettePanel') ->setClass('DibiNettePanel')
->addSetup('Nette\Diagnostics\Debugger::$bar->addPanel(?)', array('@self')) ->addSetup('Nette\Diagnostics\Debugger::$bar->addPanel(?)', array('@self'))
->addSetup('Nette\Diagnostics\Debugger::$blueScreen->addPanel(?)', array(array('@self', 'renderException'))); ->addSetup('Nette\Diagnostics\Debugger::$blueScreen->addPanel(?)', array('DibiNettePanel::renderException'));
$connection->addSetup('$service->onEvent[] = ?', array(array($panel, 'logEvent'))); $connection->addSetup('$service->onEvent[] = ?', array(array($panel, 'logEvent')));
} }

View File

@@ -0,0 +1,17 @@
# Requires Nette Framework 2.0 for PHP 5.3
#
# In bootstrap.php append these lines after line $configurator = new Nette\Config\Configurator;
#
# $configurator->onCompile[] = function($configurator, $compiler) {
# $compiler->addExtension('dibi', new DibiNette20Extension);
# };
#
# This will create service named 'dibi.connection'.
common:
dibi:
host: localhost
username: root
password: ***
database: foo
lazy: TRUE

View File

@@ -0,0 +1,51 @@
<?php
/**
* This file is part of the "dibi" - smart database abstraction layer.
* Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*/
/**
* Dibi extension for Nette Framework 2.1. Creates 'connection' service.
*
* @author David Grudl
* @package dibi\nette
* @phpversion 5.3
*/
class DibiNette21Extension extends Nette\DI\CompilerExtension
{
public function loadConfiguration()
{
$container = $this->getContainerBuilder();
$config = $this->getConfig();
$useProfiler = isset($config['profiler'])
? $config['profiler']
: $container->parameters['debugMode'];
unset($config['profiler']);
if (isset($config['flags'])) {
$flags = 0;
foreach ((array) $config['flags'] as $flag) {
$flags |= constant($flag);
}
$config['flags'] = $flags;
}
$connection = $container->addDefinition($this->prefix('connection'))
->setClass('DibiConnection', array($config));
if ($useProfiler) {
$panel = $container->addDefinition($this->prefix('panel'))
->setClass('DibiNettePanel')
->addSetup('Nette\Diagnostics\Debugger::getBar()->addPanel(?)', array('@self'))
->addSetup('Nette\Diagnostics\Debugger::getBlueScreen()->addPanel(?)', array('DibiNettePanel::renderException'));
$connection->addSetup('$service->onEvent[] = ?', array(array($panel, 'logEvent')));
}
}
}

View File

@@ -2,21 +2,15 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
if (interface_exists('Nette\Diagnostics\IBarPanel')) { if (interface_exists('Nette\Diagnostics\IBarPanel')) {
class_alias('Nette\Diagnostics\IBarPanel', 'IBarPanel'); class_alias('Nette\Diagnostics\IBarPanel', 'IBarPanel');
} }
/** /**
* Dibi panel for Nette\Diagnostics. * Dibi panel for Nette\Diagnostics.
* *
@@ -38,7 +32,6 @@ class DibiNettePanel extends DibiObject implements IBarPanel
private $events = array(); private $events = array();
public function __construct($explain = TRUE, $filter = NULL) public function __construct($explain = TRUE, $filter = NULL)
{ {
$this->filter = $filter ? (int) $filter : DibiEvent::QUERY; $this->filter = $filter ? (int) $filter : DibiEvent::QUERY;
@@ -46,25 +39,29 @@ class DibiNettePanel extends DibiObject implements IBarPanel
} }
public function register(DibiConnection $connection) public function register(DibiConnection $connection)
{ {
if (is_callable('Nette\Diagnostics\Debugger::enable') && !class_exists('NDebugger')) { if (is_callable('Nette\Diagnostics\Debugger::enable') && !class_exists('NDebugger')) {
class_alias('Nette\Diagnostics\Debugger', 'NDebugger'); // PHP 5.2 code compatibility class_alias('Nette\Diagnostics\Debugger', 'NDebugger'); // PHP 5.2 code compatibility
} }
if (is_callable('NDebugger::enable')) { if (is_callable('NDebugger::enable') && is_callable('NDebugger::getBlueScreen')) { // Nette Framework 2.1
NDebugger::$bar && NDebugger::$bar->addPanel($this); NDebugger::getBar()->addPanel($this);
NDebugger::$blueScreen && NDebugger::$blueScreen->addPanel(array($this, 'renderException'), __CLASS__); NDebugger::getBlueScreen()->addPanel(array(__CLASS__, 'renderException'));
$connection->onEvent[] = array($this, 'logEvent'); $connection->onEvent[] = array($this, 'logEvent');
} elseif (is_callable('Debugger::enable')) {
} elseif (is_callable('NDebugger::enable')) { // Nette Framework 2.0 (for PHP 5.3 or PHP 5.2 prefixed)
NDebugger::$bar && NDebugger::$bar->addPanel($this);
NDebugger::$blueScreen && NDebugger::$blueScreen->addPanel(array(__CLASS__, 'renderException'), __CLASS__);
$connection->onEvent[] = array($this, 'logEvent');
} elseif (is_callable('Debugger::enable') && !is_callable('Debugger::getBlueScreen')) { // Nette Framework 2.0 for PHP 5.2 non-prefixed
Debugger::$bar && Debugger::$bar->addPanel($this); Debugger::$bar && Debugger::$bar->addPanel($this);
Debugger::$blueScreen && Debugger::$blueScreen->addPanel(array($this, 'renderException'), __CLASS__); Debugger::$blueScreen && Debugger::$blueScreen->addPanel(array(__CLASS__, 'renderException'), __CLASS__);
$connection->onEvent[] = array($this, 'logEvent'); $connection->onEvent[] = array($this, 'logEvent');
} }
} }
/** /**
* After event notification. * After event notification.
* @return void * @return void
@@ -78,12 +75,11 @@ class DibiNettePanel extends DibiObject implements IBarPanel
} }
/** /**
* Returns blue-screen custom tab. * Returns blue-screen custom tab.
* @return mixed * @return mixed
*/ */
public function renderException($e) public static function renderException($e)
{ {
if ($e instanceof DibiException && $e->getSql()) { if ($e instanceof DibiException && $e->getSql()) {
return array( return array(
@@ -94,7 +90,6 @@ class DibiNettePanel extends DibiObject implements IBarPanel
} }
/** /**
* Returns HTML code for custom tab. (Nette\Diagnostics\IBarPanel) * Returns HTML code for custom tab. (Nette\Diagnostics\IBarPanel)
* @return mixed * @return mixed
@@ -107,12 +102,11 @@ class DibiNettePanel extends DibiObject implements IBarPanel
} }
return '<span title="dibi"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAEYSURBVBgZBcHPio5hGAfg6/2+R980k6wmJgsJ5U/ZOAqbSc2GnXOwUg7BESgLUeIQ1GSjLFnMwsKGGg1qxJRmPM97/1zXFAAAAEADdlfZzr26miup2svnelq7d2aYgt3rebl585wN6+K3I1/9fJe7O/uIePP2SypJkiRJ0vMhr55FLCA3zgIAOK9uQ4MS361ZOSX+OrTvkgINSjS/HIvhjxNNFGgQsbSmabohKDNoUGLohsls6BaiQIMSs2FYmnXdUsygQYmumy3Nhi6igwalDEOJEjPKP7CA2aFNK8Bkyy3fdNCg7r9/fW3jgpVJbDmy5+PB2IYp4MXFelQ7izPrhkPHB+P5/PjhD5gCgCenx+VR/dODEwD+A3T7nqbxwf1HAAAAAElFTkSuQmCC" />' return '<span title="dibi"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAEYSURBVBgZBcHPio5hGAfg6/2+R980k6wmJgsJ5U/ZOAqbSc2GnXOwUg7BESgLUeIQ1GSjLFnMwsKGGg1qxJRmPM97/1zXFAAAAEADdlfZzr26miup2svnelq7d2aYgt3rebl585wN6+K3I1/9fJe7O/uIePP2SypJkiRJ0vMhr55FLCA3zgIAOK9uQ4MS361ZOSX+OrTvkgINSjS/HIvhjxNNFGgQsbSmabohKDNoUGLohsls6BaiQIMSs2FYmnXdUsygQYmumy3Nhi6igwalDEOJEjPKP7CA2aFNK8Bkyy3fdNCg7r9/fW3jgpVJbDmy5+PB2IYp4MXFelQ7izPrhkPHB+P5/PjhD5gCgCenx+VR/dODEwD+A3T7nqbxwf1HAAAAAElFTkSuQmCC" />'
. count($this->events) . ' queries' . count($this->events) . ' queries'
. ($totalTime ? ' / ' . sprintf('%0.1f', $totalTime * 1000) . 'ms' : '') . ($totalTime ? sprintf(' / %0.1f ms', $totalTime * 1000) : '')
. '</span>'; . '</span>';
} }
/** /**
* Returns HTML code for custom panel. (Nette\Diagnostics\IBarPanel) * Returns HTML code for custom panel. (Nette\Diagnostics\IBarPanel)
* @return mixed * @return mixed
@@ -138,7 +132,7 @@ class DibiNettePanel extends DibiObject implements IBarPanel
if ($explain) { if ($explain) {
static $counter; static $counter;
$counter++; $counter++;
$s .= "<br /><a href='#' class='nette-toggler' rel='#nette-debug-DibiProfiler-row-$counter'>explain&nbsp;&#x25ba;</a>"; $s .= "<br /><a href='#nette-debug-DibiProfiler-row-$counter' class='nette-toggler nette-toggle-collapsed' rel='#nette-debug-DibiProfiler-row-$counter'>explain</a>";
} }
$s .= '</td><td class="nette-DibiProfiler-sql">' . dibi::dump(strlen($event->sql) > self::$maxLength ? substr($event->sql, 0, self::$maxLength) . '...' : $event->sql, TRUE); $s .= '</td><td class="nette-DibiProfiler-sql">' . dibi::dump(strlen($event->sql) > self::$maxLength ? substr($event->sql, 0, self::$maxLength) . '...' : $event->sql, TRUE);
@@ -160,7 +154,7 @@ class DibiNettePanel extends DibiObject implements IBarPanel
'<style> #nette-debug td.nette-DibiProfiler-sql { background: white !important } '<style> #nette-debug td.nette-DibiProfiler-sql { background: white !important }
#nette-debug .nette-DibiProfiler-source { color: #999 !important } #nette-debug .nette-DibiProfiler-source { color: #999 !important }
#nette-debug nette-DibiProfiler tr table { margin: 8px 0; max-height: 150px; overflow:auto } </style> #nette-debug nette-DibiProfiler tr table { margin: 8px 0; max-height: 150px; overflow:auto } </style>
<h1>Queries: ' . count($this->events) . ($totalTime === NULL ? '' : ', time: ' . sprintf('%0.3f', $totalTime * 1000) . ' ms') . '</h1> <h1>Queries: ' . count($this->events) . ($totalTime === NULL ? '' : sprintf(', time: %0.3f ms', $totalTime * 1000)) . '</h1>
<div class="nette-inner nette-DibiProfiler"> <div class="nette-inner nette-DibiProfiler">
<table> <table>
<tr><th>Time&nbsp;ms</th><th>SQL Statement</th><th>Rows</th><th>Connection</th></tr>' . $s . ' <tr><th>Time&nbsp;ms</th><th>SQL Statement</th><th>Rows</th><th>Connection</th></tr>' . $s . '

View File

@@ -0,0 +1,12 @@
# This will create service named 'dibi.connection'.
# Requires Nette Framework 2.1
extensions:
dibi: DibiNette21Extension
dibi:
host: localhost
username: root
password: ***
database: foo
lazy: TRUE

View File

@@ -4,9 +4,6 @@
* dibi - smart database abstraction layer (http://dibiphp.com) * dibi - smart database abstraction layer (http://dibiphp.com)
* *
* Copyright (c) 2005, 2012 David Grudl (http://davidgrudl.com) * Copyright (c) 2005, 2012 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
@@ -17,9 +14,6 @@ if (version_compare(PHP_VERSION, '5.2.0', '<')) {
throw new Exception('dibi needs PHP 5.2.0 or newer.'); throw new Exception('dibi needs PHP 5.2.0 or newer.');
} }
@set_magic_quotes_runtime(FALSE); // intentionally @
require_once dirname(__FILE__) . '/libs/interfaces.php'; require_once dirname(__FILE__) . '/libs/interfaces.php';
require_once dirname(__FILE__) . '/libs/DibiDateTime.php'; require_once dirname(__FILE__) . '/libs/DibiDateTime.php';
@@ -39,13 +33,10 @@ require_once dirname(__FILE__) . '/libs/DibiEvent.php';
require_once dirname(__FILE__) . '/libs/DibiFileLogger.php'; require_once dirname(__FILE__) . '/libs/DibiFileLogger.php';
require_once dirname(__FILE__) . '/libs/DibiFirePhpLogger.php'; require_once dirname(__FILE__) . '/libs/DibiFirePhpLogger.php';
if (interface_exists('Nette\Diagnostics\IBarPanel') || interface_exists('IBarPanel')) { if (interface_exists('Nette\Diagnostics\IBarPanel') || interface_exists('IBarPanel')) {
require_once dirname(__FILE__) . '/Nette/DibiNettePanel.php'; require_once dirname(__FILE__) . '/bridges/Nette-2.1/DibiNettePanel.php';
} }
/** /**
* Interface for database drivers. * Interface for database drivers.
* *
@@ -80,8 +71,8 @@ class dibi
FIELD_TIME = dibi::TIME; FIELD_TIME = dibi::TIME;
/** version */ /** version */
const VERSION = '2.0.2', const VERSION = '2.1.3',
REVISION = '$WCREV$ released on $WCDATE$'; REVISION = 'released on 2015-01-13';
/** sorting order */ /** sorting order */
const ASC = 'ASC', const ASC = 'ASC',
@@ -112,7 +103,6 @@ class dibi
public static $defaultDriver = 'mysql'; public static $defaultDriver = 'mysql';
/** /**
* Static class - cannot be instantiated. * Static class - cannot be instantiated.
*/ */
@@ -122,11 +112,9 @@ class dibi
} }
/********************* connections handling ****************d*g**/ /********************* connections handling ****************d*g**/
/** /**
* Creates a new DibiConnection object and connects it to specified database. * Creates a new DibiConnection object and connects it to specified database.
* @param mixed connection parameters * @param mixed connection parameters
@@ -140,7 +128,6 @@ class dibi
} }
/** /**
* Disconnects from database (doesn't destroy DibiConnection object). * Disconnects from database (doesn't destroy DibiConnection object).
* @return void * @return void
@@ -151,7 +138,6 @@ class dibi
} }
/** /**
* Returns TRUE when connection was established. * Returns TRUE when connection was established.
* @return bool * @return bool
@@ -162,7 +148,6 @@ class dibi
} }
/** /**
* Retrieve active connection. * Retrieve active connection.
* @param string connection registy name * @param string connection registy name
@@ -187,7 +172,6 @@ class dibi
} }
/** /**
* Sets connection. * Sets connection.
* @param DibiConnection * @param DibiConnection
@@ -199,7 +183,6 @@ class dibi
} }
/** /**
* Change active connection. * Change active connection.
* @param string connection registy name * @param string connection registy name
@@ -212,11 +195,9 @@ class dibi
} }
/********************* monostate for active connection ****************d*g**/ /********************* monostate for active connection ****************d*g**/
/** /**
* Generates and executes SQL query - Monostate for DibiConnection::query(). * Generates and executes SQL query - Monostate for DibiConnection::query().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -230,7 +211,6 @@ class dibi
} }
/** /**
* Executes the SQL query - Monostate for DibiConnection::nativeQuery(). * Executes the SQL query - Monostate for DibiConnection::nativeQuery().
* @param string SQL statement. * @param string SQL statement.
@@ -242,7 +222,6 @@ class dibi
} }
/** /**
* Generates and prints SQL query - Monostate for DibiConnection::test(). * Generates and prints SQL query - Monostate for DibiConnection::test().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -255,7 +234,6 @@ class dibi
} }
/** /**
* Generates and returns SQL query as DibiDataSource - Monostate for DibiConnection::test(). * Generates and returns SQL query as DibiDataSource - Monostate for DibiConnection::test().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -268,7 +246,6 @@ class dibi
} }
/** /**
* Executes SQL query and fetch result - Monostate for DibiConnection::query() & fetch(). * Executes SQL query and fetch result - Monostate for DibiConnection::query() & fetch().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -282,11 +259,10 @@ class dibi
} }
/** /**
* Executes SQL query and fetch results - Monostate for DibiConnection::query() & fetchAll(). * Executes SQL query and fetch results - Monostate for DibiConnection::query() & fetchAll().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
* @return array of DibiRow * @return DibiRow[]
* @throws DibiException * @throws DibiException
*/ */
public static function fetchAll($args) public static function fetchAll($args)
@@ -296,7 +272,6 @@ class dibi
} }
/** /**
* Executes SQL query and fetch first column - Monostate for DibiConnection::query() & fetchSingle(). * Executes SQL query and fetch first column - Monostate for DibiConnection::query() & fetchSingle().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -310,7 +285,6 @@ class dibi
} }
/** /**
* Executes SQL query and fetch pairs - Monostate for DibiConnection::query() & fetchPairs(). * Executes SQL query and fetch pairs - Monostate for DibiConnection::query() & fetchPairs().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -324,7 +298,6 @@ class dibi
} }
/** /**
* Gets the number of affected rows. * Gets the number of affected rows.
* Monostate for DibiConnection::getAffectedRows() * Monostate for DibiConnection::getAffectedRows()
@@ -337,7 +310,6 @@ class dibi
} }
/** /**
* Gets the number of affected rows. Alias for getAffectedRows(). * Gets the number of affected rows. Alias for getAffectedRows().
* @return int number of rows * @return int number of rows
@@ -349,7 +321,6 @@ class dibi
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* Monostate for DibiConnection::getInsertId() * Monostate for DibiConnection::getInsertId()
@@ -363,7 +334,6 @@ class dibi
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column. Alias for getInsertId(). * Retrieves the ID generated for an AUTO_INCREMENT column. Alias for getInsertId().
* @param string optional sequence name * @param string optional sequence name
@@ -376,7 +346,6 @@ class dibi
} }
/** /**
* Begins a transaction - Monostate for DibiConnection::begin(). * Begins a transaction - Monostate for DibiConnection::begin().
* @param string optional savepoint name * @param string optional savepoint name
@@ -389,7 +358,6 @@ class dibi
} }
/** /**
* Commits statements in a transaction - Monostate for DibiConnection::commit($savepoint = NULL). * Commits statements in a transaction - Monostate for DibiConnection::commit($savepoint = NULL).
* @param string optional savepoint name * @param string optional savepoint name
@@ -402,7 +370,6 @@ class dibi
} }
/** /**
* Rollback changes in a transaction - Monostate for DibiConnection::rollback(). * Rollback changes in a transaction - Monostate for DibiConnection::rollback().
* @param string optional savepoint name * @param string optional savepoint name
@@ -415,7 +382,6 @@ class dibi
} }
/** /**
* Gets a information about the current database - Monostate for DibiConnection::getDatabaseInfo(). * Gets a information about the current database - Monostate for DibiConnection::getDatabaseInfo().
* @return DibiDatabaseInfo * @return DibiDatabaseInfo
@@ -426,7 +392,6 @@ class dibi
} }
/** /**
* Import SQL dump from file - extreme fast! * Import SQL dump from file - extreme fast!
* @param string filename * @param string filename
@@ -438,24 +403,21 @@ class dibi
} }
/** /**
* Replacement for majority of dibi::methods() in future. * Replacement for majority of dibi::methods() in future.
*/ */
public static function __callStatic($name, $args) public static function __callStatic($name, $args)
{ {
//if ($name = 'select', 'update', ...') { //if ($name = 'select', 'update', ...') {
// return self::command()->$name($args); // return self::command()->$name($args);
//} //}
return call_user_func_array(array(self::getConnection(), $name), $args); return call_user_func_array(array(self::getConnection(), $name), $args);
} }
/********************* fluent SQL builders ****************d*g**/ /********************* fluent SQL builders ****************d*g**/
/** /**
* @return DibiFluent * @return DibiFluent
*/ */
@@ -465,7 +427,6 @@ class dibi
} }
/** /**
* @param string column name * @param string column name
* @return DibiFluent * @return DibiFluent
@@ -477,7 +438,6 @@ class dibi
} }
/** /**
* @param string table * @param string table
* @param array * @param array
@@ -489,7 +449,6 @@ class dibi
} }
/** /**
* @param string table * @param string table
* @param array * @param array
@@ -501,7 +460,6 @@ class dibi
} }
/** /**
* @param string table * @param string table
* @return DibiFluent * @return DibiFluent
@@ -512,37 +470,32 @@ class dibi
} }
/********************* data types ****************d*g**/ /********************* data types ****************d*g**/
/** /**
* @return DibiDateTime * @deprecated
*/ */
public static function datetime($time = NULL) public static function datetime($time = NULL)
{ {
trigger_error(__METHOD__ . '() is deprecated; create DibiDateTime object instead.', E_USER_WARNING); trigger_error(__METHOD__ . '() is deprecated; create DateTime object instead.', E_USER_WARNING);
return new DibiDateTime($time); return new DibiDateTime($time);
} }
/** /**
* @deprecated * @deprecated
*/ */
public static function date($date = NULL) public static function date($date = NULL)
{ {
trigger_error(__METHOD__ . '() is deprecated; create DibiDateTime object instead.', E_USER_WARNING); trigger_error(__METHOD__ . '() is deprecated; create DateTime object instead.', E_USER_WARNING);
return new DibiDateTime($date); return new DibiDateTime($date);
} }
/********************* substitutions ****************d*g**/ /********************* substitutions ****************d*g**/
/** /**
* Returns substitution hashmap - Monostate for DibiConnection::getSubstitutes(). * Returns substitution hashmap - Monostate for DibiConnection::getSubstitutes().
* @return DibiHashMap * @return DibiHashMap
@@ -553,7 +506,6 @@ class dibi
} }
/** @deprecated */ /** @deprecated */
public static function addSubst($expr, $subst) public static function addSubst($expr, $subst)
{ {
@@ -562,7 +514,6 @@ class dibi
} }
/** @deprecated */ /** @deprecated */
public static function removeSubst($expr) public static function removeSubst($expr)
{ {
@@ -578,7 +529,6 @@ class dibi
} }
/** @deprecated */ /** @deprecated */
public static function setSubstFallback($callback) public static function setSubstFallback($callback)
{ {
@@ -587,11 +537,9 @@ class dibi
} }
/********************* misc tools ****************d*g**/ /********************* misc tools ****************d*g**/
/** /**
* Prints out a syntax highlighted version of the SQL command or DibiResult. * Prints out a syntax highlighted version of the SQL command or DibiResult.
* @param string|DibiResult * @param string|DibiResult
@@ -605,7 +553,9 @@ class dibi
$sql->dump(); $sql->dump();
} else { } else {
if ($sql === NULL) $sql = self::$sql; if ($sql === NULL) {
$sql = self::$sql;
}
static $keywords1 = 'SELECT|(?:ON\s+DUPLICATE\s+KEY)?UPDATE|INSERT(?:\s+INTO)?|REPLACE(?:\s+INTO)?|DELETE|CALL|UNION|FROM|WHERE|HAVING|GROUP\s+BY|ORDER\s+BY|LIMIT|OFFSET|SET|VALUES|LEFT\s+JOIN|INNER\s+JOIN|TRUNCATE'; static $keywords1 = 'SELECT|(?:ON\s+DUPLICATE\s+KEY)?UPDATE|INSERT(?:\s+INTO)?|REPLACE(?:\s+INTO)?|DELETE|CALL|UNION|FROM|WHERE|HAVING|GROUP\s+BY|ORDER\s+BY|LIMIT|OFFSET|SET|VALUES|LEFT\s+JOIN|INNER\s+JOIN|TRUNCATE';
static $keywords2 = 'ALL|DISTINCT|DISTINCTROW|IGNORE|AS|USING|ON|AND|OR|IN|IS|NOT|NULL|LIKE|RLIKE|REGEXP|TRUE|FALSE'; static $keywords2 = 'ALL|DISTINCT|DISTINCTROW|IGNORE|AS|USING|ON|AND|OR|IN|IS|NOT|NULL|LIKE|RLIKE|REGEXP|TRUE|FALSE';
@@ -620,13 +570,18 @@ class dibi
$sql = wordwrap($sql, 100); $sql = wordwrap($sql, 100);
$sql = preg_replace("#([ \t]*\r?\n){2,}#", "\n", $sql); $sql = preg_replace("#([ \t]*\r?\n){2,}#", "\n", $sql);
// syntax highlight
$highlighter = "#(/\\*.+?\\*/)|(\\*\\*.+?\\*\\*)|(?<=[\\s,(])($keywords1)(?=[\\s,)])|(?<=[\\s,(=])($keywords2)(?=[\\s,)=])#is";
if (PHP_SAPI === 'cli') { if (PHP_SAPI === 'cli') {
if (substr(getenv('TERM'), 0, 5) === 'xterm') {
$sql = preg_replace_callback($highlighter, array('dibi', 'cliHighlightCallback'), $sql);
}
echo trim($sql) . "\n\n"; echo trim($sql) . "\n\n";
} else { } else {
// syntax highlight
$sql = htmlSpecialChars($sql); $sql = htmlSpecialChars($sql);
$sql = preg_replace_callback("#(/\\*.+?\\*/)|(\\*\\*.+?\\*\\*)|(?<=[\\s,(])($keywords1)(?=[\\s,)])|(?<=[\\s,(=])($keywords2)(?=[\\s,)=])#is", array('dibi', 'highlightCallback'), $sql); $sql = preg_replace_callback($highlighter, array('dibi', 'highlightCallback'), $sql);
echo '<pre class="dump">', trim($sql), "</pre>\n"; echo '<pre class="dump">', trim($sql), "</pre>\n\n";
} }
} }
@@ -638,20 +593,37 @@ class dibi
} }
private static function highlightCallback($matches) private static function highlightCallback($matches)
{ {
if (!empty($matches[1])) // comment if (!empty($matches[1])) { // comment
return '<em style="color:gray">' . $matches[1] . '</em>'; return '<em style="color:gray">' . $matches[1] . '</em>';
if (!empty($matches[2])) // error } elseif (!empty($matches[2])) { // error
return '<strong style="color:red">' . $matches[2] . '</strong>'; return '<strong style="color:red">' . $matches[2] . '</strong>';
if (!empty($matches[3])) // most important keywords } elseif (!empty($matches[3])) { // most important keywords
return '<strong style="color:blue">' . $matches[3] . '</strong>'; return '<strong style="color:blue">' . $matches[3] . '</strong>';
if (!empty($matches[4])) // other keywords } elseif (!empty($matches[4])) { // other keywords
return '<strong style="color:green">' . $matches[4] . '</strong>'; return '<strong style="color:green">' . $matches[4] . '</strong>';
}
}
private static function cliHighlightCallback($matches)
{
if (!empty($matches[1])) { // comment
return "\033[1;30m" . $matches[1] . "\033[0m";
} elseif (!empty($matches[2])) { // error
return "\033[1;31m" . $matches[2] . "\033[0m";
} elseif (!empty($matches[3])) { // most important keywords
return "\033[1;34m" . $matches[3] . "\033[0m";
} elseif (!empty($matches[4])) { // other keywords
return "\033[1;32m" . $matches[4] . "\033[0m";
}
} }
} }

View File

@@ -2,11 +2,7 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
@@ -56,13 +52,12 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
DibiConnection::alias($config, 'database', 'db'); DibiConnection::alias($config, 'database', 'db');
@@ -71,11 +66,13 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} else { } else {
// default values // default values
if (!isset($config['username'])) $config['username'] = ini_get('ibase.default_password'); $config += array(
if (!isset($config['password'])) $config['password'] = ini_get('ibase.default_user'); 'username' => ini_get('ibase.default_password'),
if (!isset($config['database'])) $config['database'] = ini_get('ibase.default_db'); 'password' => ini_get('ibase.default_user'),
if (!isset($config['charset'])) $config['charset'] = ini_get('ibase.default_charset'); 'database' => ini_get('ibase.default_db'),
if (!isset($config['buffers'])) $config['buffers'] = 0; 'charset' => ini_get('ibase.default_charset'),
'buffers' => 0,
);
DibiDriverException::tryError(); DibiDriverException::tryError();
if (empty($config['persistent'])) { if (empty($config['persistent'])) {
@@ -95,7 +92,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -106,7 +102,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -138,7 +133,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -149,7 +143,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @param string generator name * @param string generator name
@@ -161,7 +154,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -178,7 +170,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -199,7 +190,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -220,7 +210,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Is in transaction? * Is in transaction?
* @return bool * @return bool
@@ -231,7 +220,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return resource * @return resource
@@ -242,7 +230,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -253,7 +240,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -267,11 +253,9 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/********************* SQL ********************/ /********************* SQL ********************/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -282,29 +266,28 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
case dibi::BINARY: case dibi::BINARY:
return "'" . str_replace("'", "''", $value) . "'"; return "'" . str_replace("'", "''", $value) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
return $value; return $value;
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -317,7 +300,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -334,28 +316,22 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($limit < 0 && $offset < 1) return; if ($limit >= 0 && $offset > 0) {
// see http://scott.yang.id.au/2004/01/limit-in-select-statements-in-firebird/
// see http://scott.yang.id.au/2004/01/limit-in-select-statements-in-firebird/ $sql = 'SELECT FIRST ' . (int) $limit . ($offset > 0 ? ' SKIP ' . (int) $offset : '') . ' * FROM (' . $sql . ')';
$sql = 'SELECT FIRST ' . (int) $limit . ($offset > 0 ? ' SKIP ' . (int) $offset : '') . ' * FROM (' . $sql . ')'; }
} }
/********************* result set ********************/ /********************* result set ********************/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -366,18 +342,16 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
*/ */
public function getRowCount() public function getRowCount()
{ {
return ibase_num_fields($this->resultSet); throw new DibiNotSupportedException("Firebird/Interbase do not support returning number of rows in result set.");
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -390,7 +364,7 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
if (DibiDriverException::catchError($msg)) { if (DibiDriverException::catchError($msg)) {
if (ibase_errcode() == self::ERROR_EXCEPTION_THROWN) { if (ibase_errcode() == self::ERROR_EXCEPTION_THROWN) {
preg_match('/exception (\d+) (\w+) (.*)/i', ibase_errmsg(), $match); preg_match('/exception (\d+) (\w+) (.*)/is', ibase_errmsg(), $match);
throw new DibiProcedureException($match[3], $match[1], $match[2], dibi::$sql); throw new DibiProcedureException($match[3], $match[1], $match[2], dibi::$sql);
} else { } else {
@@ -402,7 +376,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -415,7 +388,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -427,7 +399,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mysqli_result * @return mysqli_result
@@ -439,7 +410,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -461,11 +431,9 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/********************* IDibiReflector ********************/ /********************* IDibiReflector ********************/
/** /**
* Returns list of tables. * Returns list of tables.
* @return array * @return array
@@ -489,7 +457,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns metadata for all columns in a table. * Returns metadata for all columns in a table.
* @param string * @param string
@@ -545,7 +512,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns metadata for all indexes in a table (the constraints are included). * Returns metadata for all indexes in a table (the constraints are included).
* @param string * @param string
@@ -580,7 +546,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns metadata for all foreign keys in a table. * Returns metadata for all foreign keys in a table.
* @param string * @param string
@@ -611,7 +576,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns list of indices in given table (the constraints are not listed). * Returns list of indices in given table (the constraints are not listed).
* @param string * @param string
@@ -634,7 +598,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns list of constraints in given table. * Returns list of constraints in given table.
* @param string * @param string
@@ -659,7 +622,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns metadata for all triggers in a table or database. * Returns metadata for all triggers in a table or database.
* (Only if user has permissions on ALTER TABLE, INSERT/UPDATE/DELETE record in table) * (Only if user has permissions on ALTER TABLE, INSERT/UPDATE/DELETE record in table)
@@ -709,7 +671,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns list of triggers for given table. * Returns list of triggers for given table.
* (Only if user has permissions on ALTER TABLE, INSERT/UPDATE/DELETE record in table) * (Only if user has permissions on ALTER TABLE, INSERT/UPDATE/DELETE record in table)
@@ -732,7 +693,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns metadata from stored procedures and their input and output parameters. * Returns metadata from stored procedures and their input and output parameters.
* @param string * @param string
@@ -786,7 +746,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns list of stored procedures. * Returns list of stored procedures.
* @return array * @return array
@@ -805,7 +764,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns list of generators. * Returns list of generators.
* @return array * @return array
@@ -825,7 +783,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Returns list of user defined functions (UDF). * Returns list of user defined functions (UDF).
* @return array * @return array
@@ -847,8 +804,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD
} }
/** /**
* Database procedure exception. * Database procedure exception.
* *
@@ -875,7 +830,6 @@ class DibiProcedureException extends DibiException
} }
/** /**
* Gets the exception severity. * Gets the exception severity.
* @return string * @return string

View File

@@ -2,14 +2,13 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
require_once dirname(__FILE__) . '/DibiMsSql2005Reflector.php';
/** /**
* The dibi driver for MS SQL Driver 2005 database. * The dibi driver for MS SQL Driver 2005 database.
* *
@@ -41,7 +40,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
private $affectedRows = FALSE; private $affectedRows = FALSE;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -53,13 +51,12 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
DibiConnection::alias($config, 'options|UID', 'username'); DibiConnection::alias($config, 'options|UID', 'username');
DibiConnection::alias($config, 'options|PWD', 'password'); DibiConnection::alias($config, 'options|PWD', 'password');
@@ -70,6 +67,11 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
$this->connection = $config['resource']; $this->connection = $config['resource'];
} else { } else {
// Default values
if (!isset($config['options']['CharacterSet'])) {
$config['options']['CharacterSet'] = 'UTF-8';
}
$this->connection = sqlsrv_connect($config['host'], (array) $config['options']); $this->connection = sqlsrv_connect($config['host'], (array) $config['options']);
} }
@@ -80,7 +82,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -91,7 +92,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -114,7 +114,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -125,7 +124,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -141,7 +139,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -154,7 +151,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -167,7 +163,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -180,7 +175,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -191,18 +185,16 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
*/ */
public function getReflector() public function getReflector()
{ {
throw new DibiNotSupportedException; return new DibiMssql2005Reflector($this);
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -216,11 +208,9 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -231,30 +221,29 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
case dibi::BINARY: case dibi::BINARY:
return "'" . str_replace("'", "''", $value) . "'"; return "'" . str_replace("'", "''", $value) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
// @see http://msdn.microsoft.com/en-us/library/ms176027.aspx // @see http://msdn.microsoft.com/en-us/library/ms176027.aspx
return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']'; return '[' . str_replace(']', ']]', $value) . ']';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -268,7 +257,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -285,19 +273,15 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
// offset support is missing // offset support is missing
if ($limit >= 0) { if ($limit >= 0) {
$sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ')'; $sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ') AS T ';
} }
if ($offset) { if ($offset) {
@@ -306,11 +290,9 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -321,7 +303,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -332,7 +313,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -344,7 +324,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -356,7 +335,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -368,7 +346,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -387,7 +364,6 @@ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResult
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed

View File

@@ -0,0 +1,133 @@
<?php
/**
* This file is part of the "dibi" - smart database abstraction layer.
* Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*/
/**
* The dibi reflector for MSSQL2005 databases.
*
* @author Daniel Kouba
* @package dibi\drivers
* @internal
*/
class DibiMsSql2005Reflector extends DibiObject implements IDibiReflector
{
/** @var IDibiDriver */
private $driver;
public function __construct(IDibiDriver $driver)
{
$this->driver = $driver;
}
/**
* Returns list of tables.
* @return array
*/
public function getTables()
{
$res = $this->driver->query('SELECT TABLE_NAME, TABLE_TYPE FROM INFORMATION_SCHEMA.TABLES');
$tables = array();
while ($row = $res->fetch(FALSE)) {
$tables[] = array(
'name' => $row[0],
'view' => isset($row[1]) && $row[1] === 'VIEW',
);
}
return $tables;
}
/**
* Returns metadata for all columns in a table.
* @param string
* @return array
*/
public function getColumns($table)
{
$res = $this->driver->query("
SELECT c.name as COLUMN_NAME, c.is_identity AS AUTO_INCREMENT
FROM sys.columns c
INNER JOIN sys.tables t ON c.object_id = t.object_id
WHERE t.name = {$this->driver->escape($table, dibi::TEXT)}
");
$autoIncrements = array();
while ($row = $res->fetch(TRUE)) {
$autoIncrements[$row['COLUMN_NAME']] = (bool) $row['AUTO_INCREMENT'];
}
$res = $this->driver->query("
SELECT C.COLUMN_NAME, C.DATA_TYPE, C.CHARACTER_MAXIMUM_LENGTH , C.COLUMN_DEFAULT , C.NUMERIC_PRECISION, C.NUMERIC_SCALE , C.IS_NULLABLE, Case When Z.CONSTRAINT_NAME Is Null Then 0 Else 1 End As IsPartOfPrimaryKey
FROM INFORMATION_SCHEMA.COLUMNS As C
Outer Apply (
SELECT CCU.CONSTRAINT_NAME
FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS As TC
Join INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE As CCU
On CCU.CONSTRAINT_NAME = TC.CONSTRAINT_NAME
WHERE TC.TABLE_SCHEMA = C.TABLE_SCHEMA
And TC.TABLE_NAME = C.TABLE_NAME
And TC.CONSTRAINT_TYPE = 'PRIMARY KEY'
And CCU.COLUMN_NAME = C.COLUMN_NAME
) As Z
WHERE C.TABLE_NAME = {$this->driver->escape($table, dibi::TEXT)}
");
$columns = array();
while ($row = $res->fetch(TRUE)) {
$columns[] = array(
'name' => $row['COLUMN_NAME'],
'table' => $table,
'nativetype' => strtoupper($row['DATA_TYPE']),
'size' => $row['CHARACTER_MAXIMUM_LENGTH'],
'unsigned' => TRUE,
'nullable' => $row['IS_NULLABLE'] === 'YES',
'default' => $row['COLUMN_DEFAULT'],
'autoincrement' => $autoIncrements[$row['COLUMN_NAME']],
'vendor' => $row,
);
}
return $columns;
}
/**
* Returns metadata for all indexes in a table.
* @param string
* @return array
*/
public function getIndexes($table)
{
$keyUsagesRes = $this->driver->query("SELECT * FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME = {$this->driver->escape($table, dibi::TEXT)}");
$keyUsages = array();
while( $row = $keyUsagesRes->fetch(TRUE) ) {
$keyUsages[$row['CONSTRAINT_NAME']][(int) $row['ORDINAL_POSITION'] - 1] = $row['COLUMN_NAME'];
}
$res = $this->driver->query("SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE TABLE_NAME = {$this->driver->escape($table, dibi::TEXT)}");
$indexes = array();
while ($row = $res->fetch(TRUE)) {
$indexes[$row['CONSTRAINT_NAME']]['name'] = $row['CONSTRAINT_NAME'];
$indexes[$row['CONSTRAINT_NAME']]['unique'] = $row['CONSTRAINT_TYPE'] === 'UNIQUE';
$indexes[$row['CONSTRAINT_NAME']]['primary'] = $row['CONSTRAINT_TYPE'] === 'PRIMARY KEY';
$indexes[$row['CONSTRAINT_NAME']]['columns'] = isset($keyUsages[$row['CONSTRAINT_NAME']]) ? $keyUsages[$row['CONSTRAINT_NAME']] : array();
}
return array_values($indexes);
}
/**
* Returns metadata for all foreign keys in a table.
* @param string
* @return array
*/
public function getForeignKeys($table)
{
throw new DibiNotImplementedException;
}
}

View File

@@ -2,14 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
require_once dirname(__FILE__) . '/mssql.reflector.php'; require_once dirname(__FILE__) . '/DibiMsSqlReflector.php';
/** /**
* The dibi driver for MS SQL database. * The dibi driver for MS SQL database.
@@ -38,7 +34,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
private $autoFree = TRUE; private $autoFree = TRUE;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -50,13 +45,12 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
if (isset($config['resource'])) { if (isset($config['resource'])) {
$this->connection = $config['resource']; $this->connection = $config['resource'];
@@ -76,7 +70,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -87,7 +80,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -107,7 +99,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -118,7 +109,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -134,7 +124,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -147,7 +136,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -160,7 +148,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -173,7 +160,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -184,7 +170,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -195,7 +180,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -209,11 +193,9 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -224,30 +206,29 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
case dibi::BINARY: case dibi::BINARY:
return "'" . str_replace("'", "''", $value) . "'"; return "'" . str_replace("'", "''", $value) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
// @see http://msdn.microsoft.com/en-us/library/ms176027.aspx // @see http://msdn.microsoft.com/en-us/library/ms176027.aspx
return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']'; return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -261,7 +242,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -278,15 +258,11 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
// offset support is missing // offset support is missing
if ($limit >= 0) { if ($limit >= 0) {
@@ -299,11 +275,9 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -314,7 +288,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -325,7 +298,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -337,7 +309,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -349,7 +320,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -361,7 +331,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -383,7 +352,6 @@ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed

View File

@@ -1,225 +1,216 @@
<?php <?php
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
* *
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com) * Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
* *
* For the full copyright and license information, please view * @package dibi\drivers
* the file license.txt that was distributed with this source code. */
*
* @package dibi\drivers
*/ /**
* The dibi reflector for MsSQL databases.
*
/** * @author Steven Bredenberg
* The dibi reflector for MsSQL databases. * @package dibi\drivers
* * @internal
* @author Steven Bredenberg */
* @package dibi\drivers class DibiMsSqlReflector extends DibiObject implements IDibiReflector
* @internal {
*/ /** @var IDibiDriver */
class DibiMsSqlReflector extends DibiObject implements IDibiReflector private $driver;
{
/** @var IDibiDriver */
private $driver; public function __construct(IDibiDriver $driver)
{
$this->driver = $driver;
}
public function __construct(IDibiDriver $driver)
{
$this->driver = $driver; /**
} * Returns list of tables.
* @return array
*/
public function getTables()
/** {
* Returns list of tables. $res = $this->driver->query("
* @return array SELECT TABLE_NAME, TABLE_TYPE
*/ FROM INFORMATION_SCHEMA.TABLES
public function getTables() ");
{ $tables = array();
$res = $this->driver->query(" while ($row = $res->fetch(FALSE)) {
SELECT TABLE_NAME, TABLE_TYPE $tables[] = array(
FROM INFORMATION_SCHEMA.TABLES 'name' => $row[0],
"); 'view' => isset($row[1]) && $row[1] === 'VIEW',
$tables = array(); );
while ($row = $res->fetch(FALSE)) { }
$tables[] = array( return $tables;
'name' => $row[0], }
'view' => isset($row[1]) && $row[1] === 'VIEW',
);
} /**
return $tables; * Returns count of rows in a table
} * @param string
* @return integer
*/
public function getTableCount($table, $fallback=true)
/** {
* Returns count of rows in a table if (empty($table)) {
* @param string return false;
* @return integer }
*/ $result = $this->driver->query("
public function getTableCount($table, $fallback=true) SELECT MAX(rowcnt)
{ FROM sys.sysindexes
if (empty($table)) { WHERE id=OBJECT_ID({$this->driver->escape($table, dibi::IDENTIFIER)})
return false; ");
} $row = $result->fetch(FALSE);
$result = $this->driver->query("
SELECT MAX(rowcnt) if (!is_array($row) || count($row) < 1) {
FROM sys.sysindexes if ($fallback) {
WHERE id=OBJECT_ID({$this->driver->escape($table, dibi::IDENTIFIER)}) $row = $this->driver->query("SELECT COUNT(*) FROM {$this->driver->escape($table, dibi::IDENTIFIER)}")->fetch(FALSE);
"); $count = intval($row[0]);
$row = $result->fetch(FALSE); } else {
$count = false;
if (!is_array($row) || count($row) < 1) { }
if ($fallback) { } else {
$row = $this->driver->query("SELECT COUNT(*) FROM {$this->driver->escape($table, dibi::IDENTIFIER)}")->fetch(FALSE); $count = intval($row[0]);
$count = intval($row[0]); }
} else {
$count = false; return $count;
} }
} else {
$count = intval($row[0]);
} /**
* Returns metadata for all columns in a table.
return $count; * @param string
} * @return array
*/
public function getColumns($table)
{
/** $res = $this->driver->query("
* Returns metadata for all columns in a table. SELECT * FROM
* @param string INFORMATION_SCHEMA.COLUMNS
* @return array WHERE TABLE_NAME = {$this->driver->escape($table, dibi::TEXT)}
*/ ORDER BY TABLE_NAME, ORDINAL_POSITION
public function getColumns($table) ");
{ $columns = array();
$res = $this->driver->query(" while ($row = $res->fetch(TRUE)) {
SELECT * FROM $size = false;
INFORMATION_SCHEMA.COLUMNS $type = strtoupper($row['DATA_TYPE']);
WHERE TABLE_NAME = {$this->driver->escape($table, dibi::TEXT)}
ORDER BY TABLE_NAME, ORDINAL_POSITION $size_cols = array(
"); 'DATETIME'=>'DATETIME_PRECISION',
$columns = array(); 'DECIMAL'=>'NUMERIC_PRECISION',
while ($row = $res->fetch(TRUE)) { 'CHAR'=>'CHARACTER_MAXIMUM_LENGTH',
$size = false; 'NCHAR'=>'CHARACTER_OCTET_LENGTH',
$type = strtoupper($row['DATA_TYPE']); 'NVARCHAR'=>'CHARACTER_OCTET_LENGTH',
'VARCHAR'=>'CHARACTER_OCTET_LENGTH'
$size_cols = array( );
'DATETIME'=>'DATETIME_PRECISION',
'DECIMAL'=>'NUMERIC_PRECISION', if (isset($size_cols[$type])) {
'CHAR'=>'CHARACTER_MAXIMUM_LENGTH', if ($size_cols[$type]) {
'NCHAR'=>'CHARACTER_OCTET_LENGTH', $size = $row[$size_cols[$type]];
'NVARCHAR'=>'CHARACTER_OCTET_LENGTH', }
'VARCHAR'=>'CHARACTER_OCTET_LENGTH' }
);
$columns[] = array(
if (isset($size_cols[$type])) { 'name' => $row['COLUMN_NAME'],
if ($size_cols[$type]) { 'table' => $table,
$size = $row[$size_cols[$type]]; 'nativetype' => $type,
} 'size' => $size,
} 'unsigned' => NULL,
'nullable' => $row['IS_NULLABLE'] === 'YES',
$columns[] = array( 'default' => $row['COLUMN_DEFAULT'],
'name' => $row['COLUMN_NAME'], 'autoincrement' => false,
'table' => $table, 'vendor' => $row,
'nativetype' => $type, );
'size' => $size, }
'unsigned' => NULL,
'nullable' => $row['IS_NULLABLE'] === 'YES', return $columns;
'default' => $row['COLUMN_DEFAULT'], }
'autoincrement' => false,
'vendor' => $row,
); /**
} * Returns metadata for all indexes in a table.
* @param string
return $columns; * @return array
} */
public function getIndexes($table)
{
$res = $this->driver->query(
/** "SELECT ind.name index_name, ind.index_id, ic.index_column_id,
* Returns metadata for all indexes in a table. col.name column_name, ind.is_unique, ind.is_primary_key
* @param string FROM sys.indexes ind
* @return array INNER JOIN sys.index_columns ic ON
*/ (ind.object_id = ic.object_id AND ind.index_id = ic.index_id)
public function getIndexes($table) INNER JOIN sys.columns col ON
{ (ic.object_id = col.object_id and ic.column_id = col.column_id)
$res = $this->driver->query( INNER JOIN sys.tables t ON
"SELECT ind.name index_name, ind.index_id, ic.index_column_id, (ind.object_id = t.object_id)
col.name column_name, ind.is_unique, ind.is_primary_key WHERE t.name = {$this->driver->escape($table, dibi::TEXT)}
FROM sys.indexes ind AND t.is_ms_shipped = 0
INNER JOIN sys.index_columns ic ON ORDER BY
(ind.object_id = ic.object_id AND ind.index_id = ic.index_id) t.name, ind.name, ind.index_id, ic.index_column_id
INNER JOIN sys.columns col ON ");
(ic.object_id = col.object_id and ic.column_id = col.column_id)
INNER JOIN sys.tables t ON $indexes = array();
(ind.object_id = t.object_id) while ($row = $res->fetch(TRUE)) {
WHERE t.name = {$this->driver->escape($table, dibi::TEXT)} $index_name = $row['index_name'];
AND t.is_ms_shipped = 0
ORDER BY if (!isset($indexes[$index_name])) {
t.name, ind.name, ind.index_id, ic.index_column_id $indexes[$index_name] = array();
"); $indexes[$index_name]['name'] = $index_name;
$indexes[$index_name]['unique'] = (bool)$row['is_unique'];
$indexes = array(); $indexes[$index_name]['primary'] = (bool)$row['is_primary_key'];
while ($row = $res->fetch(TRUE)) { $indexes[$index_name]['columns'] = array();
$index_name = $row['index_name']; }
$indexes[$index_name]['columns'][] = $row['column_name'];
if (!isset($indexes[$index_name])) { }
$indexes[$index_name] = array();
$indexes[$index_name]['name'] = $index_name; return array_values($indexes);
$indexes[$index_name]['unique'] = (bool)$row['is_unique']; }
$indexes[$index_name]['primary'] = (bool)$row['is_primary_key'];
$indexes[$index_name]['columns'] = array();
} /**
$indexes[$index_name]['columns'][] = $row['column_name']; * Returns metadata for all foreign keys in a table.
} * @param string
* @return array
return array_values($indexes); */
} public function getForeignKeys($table)
{
$res = $this->driver->query("
SELECT f.name AS foreign_key,
/** OBJECT_NAME(f.parent_object_id) AS table_name,
* Returns metadata for all foreign keys in a table. COL_NAME(fc.parent_object_id,
* @param string fc.parent_column_id) AS column_name,
* @return array OBJECT_NAME (f.referenced_object_id) AS reference_table_name,
*/ COL_NAME(fc.referenced_object_id,
public function getForeignKeys($table) fc.referenced_column_id) AS reference_column_name,
{ fc.*
$res = $this->driver->query(" FROM sys.foreign_keys AS f
SELECT f.name AS foreign_key, INNER JOIN sys.foreign_key_columns AS fc
OBJECT_NAME(f.parent_object_id) AS table_name, ON f.OBJECT_ID = fc.constraint_object_id
COL_NAME(fc.parent_object_id, WHERE OBJECT_NAME(f.parent_object_id) = {$this->driver->escape($table, dibi::TEXT)}
fc.parent_column_id) AS column_name, ");
OBJECT_NAME (f.referenced_object_id) AS reference_table_name,
COL_NAME(fc.referenced_object_id, $keys = array();
fc.referenced_column_id) AS reference_column_name, while ($row = $res->fetch(TRUE)) {
fc.* $key_name = $row['foreign_key'];
FROM sys.foreign_keys AS f
INNER JOIN sys.foreign_key_columns AS fc if (!isset($keys[$key_name])) {
ON f.OBJECT_ID = fc.constraint_object_id $keys[$key_name]['name'] = $row['foreign_key']; // foreign key name
WHERE OBJECT_NAME(f.parent_object_id) = {$this->driver->escape($table, dibi::TEXT)} $keys[$key_name]['local'] = array($row['column_name']); // local columns
"); $keys[$key_name]['table'] = $row['reference_table_name']; // referenced table
$keys[$key_name]['foreign'] = array($row['reference_column_name']); // referenced columns
$keys = array(); $keys[$key_name]['onDelete'] = false;
while ($row = $res->fetch(TRUE)) { $keys[$key_name]['onUpdate'] = false;
$key_name = $row['foreign_key']; } else {
$keys[$key_name]['local'][] = $row['column_name']; // local columns
if (!isset($keys[$key_name])) { $keys[$key_name]['foreign'][] = $row['reference_column_name']; // referenced columns
$keys[$key_name]['name'] = $row['foreign_key']; // foreign key name }
$keys[$key_name]['local'] = array($row['column_name']); // local columns }
$keys[$key_name]['table'] = $row['reference_table_name']; // referenced table return array_values($keys);
$keys[$key_name]['foreign'] = array($row['reference_column_name']); // referenced columns }
$keys[$key_name]['onDelete'] = false;
$keys[$key_name]['onUpdate'] = false; }
} else {
$keys[$key_name]['local'][] = $row['column_name']; // local columns
$keys[$key_name]['foreign'][] = $row['reference_column_name']; // referenced columns
}
}
return array_values($keys);
}
}

View File

@@ -2,15 +2,11 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
require_once dirname(__FILE__) . '/mysql.reflector.php'; require_once dirname(__FILE__) . '/DibiMySqlReflector.php';
/** /**
@@ -53,7 +49,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
private $buffered; private $buffered;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -65,13 +60,12 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
if (isset($config['resource'])) { if (isset($config['resource'])) {
$this->connection = $config['resource']; $this->connection = $config['resource'];
@@ -79,16 +73,21 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} else { } else {
// default values // default values
DibiConnection::alias($config, 'flags', 'options'); DibiConnection::alias($config, 'flags', 'options');
if (!isset($config['charset'])) $config['charset'] = 'utf8'; $config += array(
if (!isset($config['username'])) $config['username'] = ini_get('mysql.default_user'); 'charset' => 'utf8',
if (!isset($config['password'])) $config['password'] = ini_get('mysql.default_password'); 'timezone' => date('P'),
'username' => ini_get('mysql.default_user'),
'password' => ini_get('mysql.default_password'),
);
if (!isset($config['host'])) { if (!isset($config['host'])) {
$host = ini_get('mysql.default_host'); $host = ini_get('mysql.default_host');
if ($host) { if ($host) {
$config['host'] = $host; $config['host'] = $host;
$config['port'] = ini_get('mysql.default_port'); $config['port'] = ini_get('mysql.default_port');
} else { } else {
if (!isset($config['socket'])) $config['socket'] = ini_get('mysql.default_socket'); if (!isset($config['socket'])) {
$config['socket'] = ini_get('mysql.default_socket');
}
$config['host'] = NULL; $config['host'] = NULL;
} }
} }
@@ -131,13 +130,14 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
$this->query("SET sql_mode='$config[sqlmode]'"); $this->query("SET sql_mode='$config[sqlmode]'");
} }
$this->query("SET time_zone='" . date('P') . "'"); if (isset($config['timezone'])) {
$this->query("SET time_zone='$config[timezone]'");
}
$this->buffered = empty($config['unbuffered']); $this->buffered = empty($config['unbuffered']);
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -148,7 +148,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -172,7 +171,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Retrieves information about the most recently executed query. * Retrieves information about the most recently executed query.
* @return array * @return array
@@ -181,7 +179,9 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
{ {
$res = array(); $res = array();
preg_match_all('#(.+?): +(\d+) *#', mysql_info($this->connection), $matches, PREG_SET_ORDER); preg_match_all('#(.+?): +(\d+) *#', mysql_info($this->connection), $matches, PREG_SET_ORDER);
if (preg_last_error()) throw new DibiPcreException; if (preg_last_error()) {
throw new DibiPcreException;
}
foreach ($matches as $m) { foreach ($matches as $m) {
$res[$m[1]] = (int) $m[2]; $res[$m[1]] = (int) $m[2];
@@ -190,7 +190,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -201,7 +200,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -212,7 +210,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -225,7 +222,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -238,7 +234,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -251,7 +246,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -262,7 +256,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -273,7 +266,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -287,11 +279,9 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -302,38 +292,37 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
if (!is_resource($this->connection)) { if (!is_resource($this->connection)) {
throw new DibiException('Lost connection to server.'); throw new DibiException('Lost connection to server.');
} }
return "'" . mysql_real_escape_string($value, $this->connection) . "'"; return "'" . mysql_real_escape_string($value, $this->connection) . "'";
case dibi::BINARY: case dibi::BINARY:
if (!is_resource($this->connection)) { if (!is_resource($this->connection)) {
throw new DibiException('Lost connection to server.'); throw new DibiException('Lost connection to server.');
} }
return "_binary'" . mysql_real_escape_string($value, $this->connection) . "'"; return "_binary'" . mysql_real_escape_string($value, $this->connection) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
// @see http://dev.mysql.com/doc/refman/5.0/en/identifiers.html // @see http://dev.mysql.com/doc/refman/5.0/en/identifiers.html
return '`' . str_replace('`', '``', $value) . '`'; return '`' . str_replace('`', '``', $value) . '`';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -347,7 +336,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -364,29 +352,23 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($limit < 0 && $offset < 1) return; if ($limit >= 0 || $offset > 0) {
// see http://dev.mysql.com/doc/refman/5.0/en/select.html
// see http://dev.mysql.com/doc/refman/5.0/en/select.html $sql .= ' LIMIT ' . ($limit < 0 ? '18446744073709551615' : (int) $limit)
$sql .= ' LIMIT ' . ($limit < 0 ? '18446744073709551615' : (int) $limit) . ($offset > 0 ? ' OFFSET ' . (int) $offset : '');
. ($offset > 0 ? ' OFFSET ' . (int) $offset : ''); }
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -397,7 +379,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -411,7 +392,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -423,7 +403,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -440,7 +419,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -452,7 +430,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -475,7 +452,6 @@ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriv
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed

View File

@@ -2,11 +2,7 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
@@ -23,14 +19,12 @@ class DibiMySqlReflector extends DibiObject implements IDibiReflector
private $driver; private $driver;
public function __construct(IDibiDriver $driver) public function __construct(IDibiDriver $driver)
{ {
$this->driver = $driver; $this->driver = $driver;
} }
/** /**
* Returns list of tables. * Returns list of tables.
* @return array * @return array
@@ -54,7 +48,6 @@ class DibiMySqlReflector extends DibiObject implements IDibiReflector
} }
/** /**
* Returns metadata for all columns in a table. * Returns metadata for all columns in a table.
* @param string * @param string
@@ -88,7 +81,6 @@ class DibiMySqlReflector extends DibiObject implements IDibiReflector
} }
/** /**
* Returns metadata for all indexes in a table. * Returns metadata for all indexes in a table.
* @param string * @param string
@@ -115,7 +107,6 @@ class DibiMySqlReflector extends DibiObject implements IDibiReflector
} }
/** /**
* Returns metadata for all foreign keys in a table. * Returns metadata for all foreign keys in a table.
* @param string * @param string

View File

@@ -2,15 +2,11 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
require_once dirname(__FILE__) . '/mysql.reflector.php'; require_once dirname(__FILE__) . '/DibiMySqlReflector.php';
/** /**
@@ -54,7 +50,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
private $buffered; private $buffered;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -66,13 +61,12 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
mysqli_report(MYSQLI_REPORT_OFF); mysqli_report(MYSQLI_REPORT_OFF);
if (isset($config['resource'])) { if (isset($config['resource'])) {
@@ -80,11 +74,14 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} else { } else {
// default values // default values
if (!isset($config['charset'])) $config['charset'] = 'utf8'; $config += array(
if (!isset($config['username'])) $config['username'] = ini_get('mysqli.default_user'); 'charset' => 'utf8',
if (!isset($config['password'])) $config['password'] = ini_get('mysqli.default_pw'); 'timezone' => date('P'),
if (!isset($config['socket'])) $config['socket'] = ini_get('mysqli.default_socket'); 'username' => ini_get('mysqli.default_user'),
if (!isset($config['port'])) $config['port'] = NULL; 'password' => ini_get('mysqli.default_pw'),
'socket' => ini_get('mysqli.default_socket'),
'port' => NULL,
);
if (!isset($config['host'])) { if (!isset($config['host'])) {
$host = ini_get('mysqli.default_host'); $host = ini_get('mysqli.default_host');
if ($host) { if ($host) {
@@ -132,13 +129,14 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
$this->query("SET sql_mode='$config[sqlmode]'"); $this->query("SET sql_mode='$config[sqlmode]'");
} }
$this->query("SET time_zone='" . date('P') . "'"); if (isset($config['timezone'])) {
$this->query("SET time_zone='$config[timezone]'");
}
$this->buffered = empty($config['unbuffered']); $this->buffered = empty($config['unbuffered']);
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -149,7 +147,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -169,7 +166,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Retrieves information about the most recently executed query. * Retrieves information about the most recently executed query.
* @return array * @return array
@@ -178,7 +174,9 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
{ {
$res = array(); $res = array();
preg_match_all('#(.+?): +(\d+) *#', mysqli_info($this->connection), $matches, PREG_SET_ORDER); preg_match_all('#(.+?): +(\d+) *#', mysqli_info($this->connection), $matches, PREG_SET_ORDER);
if (preg_last_error()) throw new DibiPcreException; if (preg_last_error()) {
throw new DibiPcreException;
}
foreach ($matches as $m) { foreach ($matches as $m) {
$res[$m[1]] = (int) $m[2]; $res[$m[1]] = (int) $m[2];
@@ -187,18 +185,16 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
*/ */
public function getAffectedRows() public function getAffectedRows()
{ {
return mysqli_affected_rows($this->connection); return mysqli_affected_rows($this->connection) === -1 ? FALSE : mysqli_affected_rows($this->connection);
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -209,7 +205,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -222,7 +217,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -235,7 +229,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -248,7 +241,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mysqli * @return mysqli
@@ -259,7 +251,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -270,7 +261,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param mysqli_result * @param mysqli_result
@@ -284,11 +274,9 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -299,31 +287,30 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
return "'" . mysqli_real_escape_string($this->connection, $value) . "'"; return "'" . mysqli_real_escape_string($this->connection, $value) . "'";
case dibi::BINARY: case dibi::BINARY:
return "_binary'" . mysqli_real_escape_string($this->connection, $value) . "'"; return "_binary'" . mysqli_real_escape_string($this->connection, $value) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
return '`' . str_replace('`', '``', $value) . '`'; return '`' . str_replace('`', '``', $value) . '`';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -337,7 +324,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -354,29 +340,23 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($limit < 0 && $offset < 1) return; if ($limit >= 0 || $offset > 0) {
// see http://dev.mysql.com/doc/refman/5.0/en/select.html
// see http://dev.mysql.com/doc/refman/5.0/en/select.html $sql .= ' LIMIT ' . ($limit < 0 ? '18446744073709551615' : (int) $limit)
$sql .= ' LIMIT ' . ($limit < 0 ? '18446744073709551615' : (int) $limit) . ($offset > 0 ? ' OFFSET ' . (int) $offset : '');
. ($offset > 0 ? ' OFFSET ' . (int) $offset : ''); }
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -387,7 +367,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -401,7 +380,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -413,7 +391,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -429,7 +406,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -441,7 +417,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -475,7 +450,6 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mysqli_result * @return mysqli_result
@@ -483,7 +457,7 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
public function getResultResource() public function getResultResource()
{ {
$this->autoFree = FALSE; $this->autoFree = FALSE;
return @$this->resultSet->type === NULL ? NULL : $this->resultSet; return $this->resultSet === NULL || $this->resultSet->type === NULL ? NULL : $this->resultSet;
} }
} }

View File

@@ -2,11 +2,7 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
@@ -42,7 +38,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
private $row = 0; private $row = 0;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -54,21 +49,22 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
if (isset($config['resource'])) { if (isset($config['resource'])) {
$this->connection = $config['resource']; $this->connection = $config['resource'];
} else { } else {
// default values // default values
if (!isset($config['username'])) $config['username'] = ini_get('odbc.default_user'); $config += array(
if (!isset($config['password'])) $config['password'] = ini_get('odbc.default_pw'); 'username' => ini_get('odbc.default_user'),
if (!isset($config['dsn'])) $config['dsn'] = ini_get('odbc.default_db'); 'password' => ini_get('odbc.default_pw'),
'dsn' => ini_get('odbc.default_db'),
);
if (empty($config['persistent'])) { if (empty($config['persistent'])) {
$this->connection = @odbc_connect($config['dsn'], $config['username'], $config['password']); // intentionally @ $this->connection = @odbc_connect($config['dsn'], $config['username'], $config['password']); // intentionally @
@@ -83,7 +79,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -94,7 +89,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -116,7 +110,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -127,7 +120,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -138,7 +130,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -153,7 +144,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -169,7 +159,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -185,7 +174,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Is in transaction? * Is in transaction?
* @return bool * @return bool
@@ -196,7 +184,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -207,7 +194,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -218,7 +204,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -232,11 +217,9 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -247,29 +230,28 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
case dibi::BINARY: case dibi::BINARY:
return "'" . str_replace("'", "''", $value) . "'"; return "'" . str_replace("'", "''", $value) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']'; return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format("#m/d/Y#") : date("#m/d/Y#", $value); return $value instanceof DateTime ? $value->format("#m/d/Y#") : date("#m/d/Y#", $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("#m/d/Y H:i:s#") : date("#m/d/Y H:i:s#", $value); return $value instanceof DateTime ? $value->format("#m/d/Y H:i:s#") : date("#m/d/Y H:i:s#", $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -283,7 +265,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -300,30 +281,26 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
// offset support is missing // offset support is missing
if ($limit >= 0) { if ($limit >= 0) {
$sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ')'; $sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ')';
} }
if ($offset) throw new DibiNotSupportedException('Offset is not implemented in driver odbc.'); if ($offset) {
throw new DibiNotSupportedException('Offset is not implemented in driver odbc.');
}
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -334,7 +311,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -346,7 +322,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -358,7 +333,9 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
return odbc_fetch_array($this->resultSet, ++$this->row); return odbc_fetch_array($this->resultSet, ++$this->row);
} else { } else {
$set = $this->resultSet; $set = $this->resultSet;
if (!odbc_fetch_row($set, ++$this->row)) return FALSE; if (!odbc_fetch_row($set, ++$this->row)) {
return FALSE;
}
$count = odbc_num_fields($set); $count = odbc_num_fields($set);
$cols = array(); $cols = array();
for ($i = 1; $i <= $count; $i++) $cols[] = odbc_result($set, $i); for ($i = 1; $i <= $count; $i++) $cols[] = odbc_result($set, $i);
@@ -367,7 +344,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -380,7 +356,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -392,7 +367,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -413,7 +387,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed
@@ -425,11 +398,9 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/********************* IDibiReflector ****************d*g**/ /********************* IDibiReflector ****************d*g**/
/** /**
* Returns list of tables. * Returns list of tables.
* @return array * @return array
@@ -451,7 +422,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns metadata for all columns in a table. * Returns metadata for all columns in a table.
* @param string * @param string
@@ -478,7 +448,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns metadata for all indexes in a table. * Returns metadata for all indexes in a table.
* @param string * @param string
@@ -490,7 +459,6 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDrive
} }
/** /**
* Returns metadata for all foreign keys in a table. * Returns metadata for all foreign keys in a table.
* @param string * @param string

View File

@@ -2,11 +2,7 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
@@ -21,6 +17,7 @@
* - formatDate => how to format date in SQL (@see date) * - formatDate => how to format date in SQL (@see date)
* - formatDateTime => how to format datetime in SQL (@see date) * - formatDateTime => how to format datetime in SQL (@see date)
* - resource (resource) => existing connection resource * - resource (resource) => existing connection resource
* - persistent => Creates persistent connections with oci_pconnect instead of oci_new_connect
* - lazy, profiler, result, substitutes, ... => see DibiConnection options * - lazy, profiler, result, substitutes, ... => see DibiConnection options
* *
* @author David Grudl * @author David Grudl
@@ -44,7 +41,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
private $fmtDate, $fmtDateTime; private $fmtDate, $fmtDateTime;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -56,13 +52,12 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
$foo = & $config['charset']; $foo = & $config['charset'];
$this->fmtDate = isset($config['formatDate']) ? $config['formatDate'] : 'U'; $this->fmtDate = isset($config['formatDate']) ? $config['formatDate'] : 'U';
@@ -70,8 +65,10 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
if (isset($config['resource'])) { if (isset($config['resource'])) {
$this->connection = $config['resource']; $this->connection = $config['resource'];
} else { } elseif (empty($config['persistent'])) {
$this->connection = @oci_new_connect($config['username'], $config['password'], $config['database'], $config['charset']); // intentionally @ $this->connection = @oci_new_connect($config['username'], $config['password'], $config['database'], $config['charset']); // intentionally @
} else {
$this->connection = @oci_pconnect($config['username'], $config['password'], $config['database'], $config['charset']); // intentionally @
} }
if (!$this->connection) { if (!$this->connection) {
@@ -81,7 +78,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -92,7 +88,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -118,7 +113,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -129,7 +123,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -141,7 +134,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -153,7 +145,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -170,7 +161,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -187,7 +177,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -198,7 +187,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -209,7 +197,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -223,11 +210,9 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -238,30 +223,29 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
case dibi::BINARY: case dibi::BINARY:
return "'" . str_replace("'", "''", $value) . "'"; // TODO: not tested return "'" . str_replace("'", "''", $value) . "'"; // TODO: not tested
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
// @see http://download.oracle.com/docs/cd/B10500_01/server.920/a96540/sql_elements9a.htm // @see http://download.oracle.com/docs/cd/B10500_01/server.920/a96540/sql_elements9a.htm
return '"' . str_replace('"', '""', $value) . '"'; return '"' . str_replace('"', '""', $value) . '"';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format($this->fmtDate) : date($this->fmtDate, $value); return $value instanceof DateTime ? $value->format($this->fmtDate) : date($this->fmtDate, $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format($this->fmtDateTime) : date($this->fmtDateTime, $value); return $value instanceof DateTime ? $value->format($this->fmtDateTime) : date($this->fmtDateTime, $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -276,7 +260,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -293,19 +276,17 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($offset > 0) { if ($offset > 0) {
// see http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html // see http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html
$sql = 'SELECT * FROM (SELECT t.*, ROWNUM AS "__rnum" FROM (' . $sql . ') t ' . ($limit >= 0 ? 'WHERE ROWNUM <= ' . ((int) $offset + (int) $limit) : '') . ') WHERE "__rnum" > '. (int) $offset; $sql = 'SELECT * FROM (SELECT t.*, ROWNUM AS "__rnum" FROM (' . $sql . ') t '
. ($limit >= 0 ? 'WHERE ROWNUM <= ' . ((int) $offset + (int) $limit) : '')
. ') WHERE "__rnum" > '. (int) $offset;
} elseif ($limit >= 0) { } elseif ($limit >= 0) {
$sql = 'SELECT * FROM (' . $sql . ') WHERE ROWNUM <= ' . (int) $limit; $sql = 'SELECT * FROM (' . $sql . ') WHERE ROWNUM <= ' . (int) $limit;
@@ -313,11 +294,9 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -328,7 +307,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -339,7 +317,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -351,7 +328,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -363,7 +339,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -375,7 +350,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -396,7 +370,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed
@@ -408,11 +381,9 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/********************* IDibiReflector ****************d*g**/ /********************* IDibiReflector ****************d*g**/
/** /**
* Returns list of tables. * Returns list of tables.
* @return array * @return array
@@ -433,7 +404,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns metadata for all columns in a table. * Returns metadata for all columns in a table.
* @param string * @param string
@@ -445,7 +415,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns metadata for all indexes in a table. * Returns metadata for all indexes in a table.
* @param string * @param string
@@ -457,7 +426,6 @@ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns metadata for all foreign keys in a table. * Returns metadata for all foreign keys in a table.
* @param string * @param string

View File

@@ -2,16 +2,12 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
require_once dirname(__FILE__) . '/mysql.reflector.php'; require_once dirname(__FILE__) . '/DibiMySqlReflector.php';
require_once dirname(__FILE__) . '/sqlite.reflector.php'; require_once dirname(__FILE__) . '/DibiSqliteReflector.php';
/** /**
@@ -43,7 +39,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
private $driverName; private $driverName;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -55,13 +50,12 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
$foo = & $config['dsn']; $foo = & $config['dsn'];
$foo = & $config['options']; $foo = & $config['options'];
@@ -85,7 +79,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -96,7 +89,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -131,7 +123,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -142,7 +133,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -153,7 +143,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -169,7 +158,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -185,7 +173,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -201,7 +188,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return PDO * @return PDO
@@ -212,7 +198,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -220,20 +205,19 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
public function getReflector() public function getReflector()
{ {
switch ($this->driverName) { switch ($this->driverName) {
case 'mysql': case 'mysql':
return new DibiMySqlReflector($this); return new DibiMySqlReflector($this);
case 'sqlite': case 'sqlite':
case 'sqlite2': case 'sqlite2':
return new DibiSqliteReflector($this); return new DibiSqliteReflector($this);
default: default:
throw new DibiNotSupportedException; throw new DibiNotSupportedException;
} }
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param PDOStatement * @param PDOStatement
@@ -247,11 +231,9 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -262,49 +244,51 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
return $this->connection->quote($value, PDO::PARAM_STR); return $this->connection->quote($value, PDO::PARAM_STR);
case dibi::BINARY: case dibi::BINARY:
return $this->connection->quote($value, PDO::PARAM_LOB); return $this->connection->quote($value, PDO::PARAM_LOB);
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
switch ($this->driverName) { switch ($this->driverName) {
case 'mysql': case 'mysql':
return '`' . str_replace('`', '``', $value) . '`'; return '`' . str_replace('`', '``', $value) . '`';
case 'pgsql': case 'oci':
return '"' . str_replace('"', '""', $value) . '"'; case 'pgsql':
return '"' . str_replace('"', '""', $value) . '"';
case 'sqlite': case 'sqlite':
case 'sqlite2': case 'sqlite2':
return '[' . strtr($value, '[]', ' ') . ']'; return '[' . strtr($value, '[]', ' ') . ']';
case 'odbc': case 'odbc':
case 'oci': // TODO: not tested case 'mssql':
case 'mssql': return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']';
return '[' . str_replace(array('[', ']'), array('[[', ']]'), $value) . ']';
case 'sqlsrv':
return '[' . str_replace(']', ']]', $value) . ']';
default:
return $value;
}
case dibi::BOOL:
return $this->connection->quote($value, PDO::PARAM_BOOL);
case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default: default:
return $value; throw new InvalidArgumentException('Unsupported type.');
}
case dibi::BOOL:
return $this->connection->quote($value, PDO::PARAM_BOOL);
case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default:
throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -317,7 +301,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -334,61 +317,64 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($limit < 0 && $offset < 1) return; if ($limit < 0 && $offset < 1) {
return;
}
switch ($this->driverName) { switch ($this->driverName) {
case 'mysql': case 'mysql':
$sql .= ' LIMIT ' . ($limit < 0 ? '18446744073709551615' : (int) $limit) $sql .= ' LIMIT ' . ($limit < 0 ? '18446744073709551615' : (int) $limit)
. ($offset > 0 ? ' OFFSET ' . (int) $offset : ''); . ($offset > 0 ? ' OFFSET ' . (int) $offset : '');
break;
case 'pgsql':
if ($limit >= 0) $sql .= ' LIMIT ' . (int) $limit;
if ($offset > 0) $sql .= ' OFFSET ' . (int) $offset;
break;
case 'sqlite':
case 'sqlite2':
$sql .= ' LIMIT ' . $limit . ($offset > 0 ? ' OFFSET ' . (int) $offset : '');
break;
case 'oci':
if ($offset > 0) {
$sql = 'SELECT * FROM (SELECT t.*, ROWNUM AS "__rnum" FROM (' . $sql . ') t ' . ($limit >= 0 ? 'WHERE ROWNUM <= ' . ((int) $offset + (int) $limit) : '') . ') WHERE "__rnum" > '. (int) $offset;
} elseif ($limit >= 0) {
$sql = 'SELECT * FROM (' . $sql . ') WHERE ROWNUM <= ' . (int) $limit;
}
break;
case 'odbc':
case 'mssql':
if ($offset < 1) {
$sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ')';
break; break;
}
// intentionally break omitted
default: case 'pgsql':
throw new DibiNotSupportedException('PDO or driver does not support applying limit or offset.'); if ($limit >= 0) {
$sql .= ' LIMIT ' . (int) $limit;
}
if ($offset > 0) {
$sql .= ' OFFSET ' . (int) $offset;
}
break;
case 'sqlite':
case 'sqlite2':
$sql .= ' LIMIT ' . $limit . ($offset > 0 ? ' OFFSET ' . (int) $offset : '');
break;
case 'oci':
if ($offset > 0) {
$sql = 'SELECT * FROM (SELECT t.*, ROWNUM AS "__rnum" FROM (' . $sql . ') t '
. ($limit >= 0 ? 'WHERE ROWNUM <= ' . ((int) $offset + (int) $limit) : '')
. ') WHERE "__rnum" > '. (int) $offset;
} elseif ($limit >= 0) {
$sql = 'SELECT * FROM (' . $sql . ') WHERE ROWNUM <= ' . (int) $limit;
}
break;
case 'odbc':
case 'mssql':
case 'sqlsrv':
if ($offset < 1) {
$sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ') t';
break;
}
// intentionally break omitted
default:
throw new DibiNotSupportedException('PDO or driver does not support applying limit or offset.');
} }
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -399,7 +385,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -411,7 +396,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -423,7 +407,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -434,7 +417,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -451,7 +433,10 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
// PHP < 5.2.3 compatibility // PHP < 5.2.3 compatibility
// @see: http://php.net/manual/en/pdostatement.getcolumnmeta.php#pdostatement.getcolumnmeta.changelog // @see: http://php.net/manual/en/pdostatement.getcolumnmeta.php#pdostatement.getcolumnmeta.changelog
$row['table'] = isset($row['table']) ? $row['table'] : NULL; $row = $row + array(
'table' => NULL,
'native_type' => 'VAR_STRING',
);
$columns[] = array( $columns[] = array(
'name' => $row['name'], 'name' => $row['name'],
@@ -465,7 +450,6 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return PDOStatement * @return PDOStatement

View File

@@ -2,11 +2,7 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
@@ -43,7 +39,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
private $escMethod = FALSE; private $escMethod = FALSE;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -55,19 +50,20 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
if (isset($config['resource'])) { if (isset($config['resource'])) {
$this->connection = $config['resource']; $this->connection = $config['resource'];
} else { } else {
if (!isset($config['charset'])) $config['charset'] = 'utf8'; $config += array(
'charset' => 'utf8',
);
if (isset($config['string'])) { if (isset($config['string'])) {
$string = $config['string']; $string = $config['string'];
} else { } else {
@@ -75,7 +71,9 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
DibiConnection::alias($config, 'user', 'username'); DibiConnection::alias($config, 'user', 'username');
DibiConnection::alias($config, 'dbname', 'database'); DibiConnection::alias($config, 'dbname', 'database');
foreach (array('host','hostaddr','port','dbname','user','password','connect_timeout','options','sslmode','service') as $key) { foreach (array('host','hostaddr','port','dbname','user','password','connect_timeout','options','sslmode','service') as $key) {
if (isset($config[$key])) $string .= $key . '=' . $config[$key] . ' '; if (isset($config[$key])) {
$string .= $key . '=' . $config[$key] . ' ';
}
} }
} }
@@ -110,7 +108,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -121,7 +118,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -145,7 +141,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -156,7 +151,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -170,14 +164,15 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
$res = $this->query("SELECT CURRVAL('$sequence')"); $res = $this->query("SELECT CURRVAL('$sequence')");
} }
if (!$res) return FALSE; if (!$res) {
return FALSE;
}
$row = $res->fetch(FALSE); $row = $res->fetch(FALSE);
return is_array($row) ? $row[0] : FALSE; return is_array($row) ? $row[0] : FALSE;
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -190,7 +185,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -203,7 +197,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -216,7 +209,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Is in transaction? * Is in transaction?
* @return bool * @return bool
@@ -227,7 +219,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -238,7 +229,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -249,7 +239,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -263,11 +252,9 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -278,46 +265,45 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
if ($this->escMethod) { if ($this->escMethod) {
if (!is_resource($this->connection)) { if (!is_resource($this->connection)) {
throw new DibiException('Lost connection to server.'); throw new DibiException('Lost connection to server.');
}
return "'" . pg_escape_string($this->connection, $value) . "'";
} else {
return "'" . pg_escape_string($value) . "'";
} }
return "'" . pg_escape_string($this->connection, $value) . "'";
} else {
return "'" . pg_escape_string($value) . "'";
}
case dibi::BINARY: case dibi::BINARY:
if ($this->escMethod) { if ($this->escMethod) {
if (!is_resource($this->connection)) { if (!is_resource($this->connection)) {
throw new DibiException('Lost connection to server.'); throw new DibiException('Lost connection to server.');
}
return "'" . pg_escape_bytea($this->connection, $value) . "'";
} else {
return "'" . pg_escape_bytea($value) . "'";
} }
return "'" . pg_escape_bytea($this->connection, $value) . "'";
} else {
return "'" . pg_escape_bytea($value) . "'";
}
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
// @see http://www.postgresql.org/docs/8.2/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS // @see http://www.postgresql.org/docs/8.2/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS
return '"' . str_replace('"', '""', $value) . '"'; return '"' . str_replace('"', '""', $value) . '"';
case dibi::BOOL: case dibi::BOOL:
return $value ? 'TRUE' : 'FALSE'; return $value ? 'TRUE' : 'FALSE';
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d'") : date("'Y-m-d'", $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value); return $value instanceof DateTime ? $value->format("'Y-m-d H:i:s'") : date("'Y-m-d H:i:s'", $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -330,14 +316,13 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
$value = pg_escape_string($this->connection, $value); $value = pg_escape_string($this->connection, $value);
} else { } else {
$value = pg_escape_string($value); $value = pg_escape_string($value);
} }
$value = strtr($value, array( '%' => '\\\\%', '_' => '\\\\_')); $value = strtr($value, array( '%' => '\\\\%', '_' => '\\\\_'));
return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'"); return ($pos <= 0 ? "'%" : "'") . $value . ($pos >= 0 ? "%'" : "'");
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -354,29 +339,25 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($limit >= 0) if ($limit >= 0) {
$sql .= ' LIMIT ' . (int) $limit; $sql .= ' LIMIT ' . (int) $limit;
}
if ($offset > 0) if ($offset > 0) {
$sql .= ' OFFSET ' . (int) $offset; $sql .= ' OFFSET ' . (int) $offset;
}
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -387,7 +368,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -398,7 +378,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -410,7 +389,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -422,7 +400,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -434,7 +411,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -457,7 +433,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed
@@ -469,11 +444,9 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/********************* IDibiReflector ****************d*g**/ /********************* IDibiReflector ****************d*g**/
/** /**
* Returns list of tables. * Returns list of tables.
* @return array * @return array
@@ -502,7 +475,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns metadata for all columns in a table. * Returns metadata for all columns in a table.
* @param string * @param string
@@ -510,7 +482,7 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
*/ */
public function getColumns($table) public function getColumns($table)
{ {
$_table = $this->escape($table, dibi::TEXT); $_table = $this->escape($this->escape($table, dibi::IDENTIFIER), dibi::TEXT);
$res = $this->query(" $res = $this->query("
SELECT indkey SELECT indkey
FROM pg_class FROM pg_class
@@ -543,7 +515,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns metadata for all indexes in a table. * Returns metadata for all indexes in a table.
* @param string * @param string
@@ -551,7 +522,7 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
*/ */
public function getIndexes($table) public function getIndexes($table)
{ {
$_table = $this->escape($table, dibi::TEXT); $_table = $this->escape($this->escape($table, dibi::IDENTIFIER), dibi::TEXT);
$res = $this->query(" $res = $this->query("
SELECT ordinal_position, column_name SELECT ordinal_position, column_name
FROM information_schema.columns FROM information_schema.columns
@@ -585,7 +556,6 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns metadata for all foreign keys in a table. * Returns metadata for all foreign keys in a table.
* @param string * @param string
@@ -593,7 +563,7 @@ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDr
*/ */
public function getForeignKeys($table) public function getForeignKeys($table)
{ {
$_table = $this->escape($table, dibi::TEXT); $_table = $this->escape($this->escape($table, dibi::IDENTIFIER), dibi::TEXT);
$res = $this->query(" $res = $this->query("
SELECT SELECT

View File

@@ -2,15 +2,11 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
require_once dirname(__FILE__) . '/sqlite.reflector.php'; require_once dirname(__FILE__) . '/DibiSqliteReflector.php';
/** /**
@@ -46,7 +42,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
private $dbcharset, $charset; private $dbcharset, $charset;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -58,13 +53,12 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
DibiConnection::alias($config, 'database', 'file'); DibiConnection::alias($config, 'database', 'file');
$this->fmtDate = isset($config['formatDate']) ? $config['formatDate'] : 'U'; $this->fmtDate = isset($config['formatDate']) ? $config['formatDate'] : 'U';
@@ -93,7 +87,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -104,7 +97,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -127,7 +119,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -138,7 +129,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -149,7 +139,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -162,7 +151,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -175,7 +163,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -188,7 +175,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -199,7 +185,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -210,7 +195,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param SQLite3Result * @param SQLite3Result
@@ -224,11 +208,9 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -239,31 +221,30 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
return "'" . $this->connection->escapeString($value) . "'"; return "'" . $this->connection->escapeString($value) . "'";
case dibi::BINARY: case dibi::BINARY:
return "X'" . bin2hex((string) $value) . "'"; return "X'" . bin2hex((string) $value) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
return '[' . strtr($value, '[]', ' ') . ']'; return '[' . strtr($value, '[]', ' ') . ']';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format($this->fmtDate) : date($this->fmtDate, $value); return $value instanceof DateTime ? $value->format($this->fmtDate) : date($this->fmtDate, $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format($this->fmtDateTime) : date($this->fmtDateTime, $value); return $value instanceof DateTime ? $value->format($this->fmtDateTime) : date($this->fmtDateTime, $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -277,7 +258,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -294,26 +274,21 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($limit < 0 && $offset < 1) return; if ($limit >= 0 || $offset > 0) {
$sql .= ' LIMIT ' . $limit . ($offset > 0 ? ' OFFSET ' . (int) $offset : ''); $sql .= ' LIMIT ' . (int) $limit . ($offset > 0 ? ' OFFSET ' . (int) $offset : '');
}
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -324,7 +299,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -336,7 +310,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -360,7 +333,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -373,7 +345,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -385,7 +356,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -407,7 +377,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed
@@ -419,11 +388,9 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/********************* user defined functions ****************d*g**/ /********************* user defined functions ****************d*g**/
/** /**
* Registers an user defined function for use in SQL statements. * Registers an user defined function for use in SQL statements.
* @param string function name * @param string function name
@@ -437,7 +404,6 @@ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDr
} }
/** /**
* Registers an aggregating user defined function for use in SQL statements. * Registers an aggregating user defined function for use in SQL statements.
* @param string function name * @param string function name

View File

@@ -2,15 +2,11 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
require_once dirname(__FILE__) . '/sqlite.reflector.php'; require_once dirname(__FILE__) . '/DibiSqliteReflector.php';
/** /**
@@ -48,7 +44,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
private $dbcharset, $charset; private $dbcharset, $charset;
/** /**
* @throws DibiNotSupportedException * @throws DibiNotSupportedException
*/ */
@@ -60,13 +55,12 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
public function connect(array &$config) public function connect(array & $config)
{ {
DibiConnection::alias($config, 'database', 'file'); DibiConnection::alias($config, 'database', 'file');
$this->fmtDate = isset($config['formatDate']) ? $config['formatDate'] : 'U'; $this->fmtDate = isset($config['formatDate']) ? $config['formatDate'] : 'U';
@@ -95,7 +89,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -106,7 +99,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -134,7 +126,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int|FALSE number of rows or FALSE on error * @return int|FALSE number of rows or FALSE on error
@@ -145,7 +136,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @return int|FALSE int on success or FALSE on failure * @return int|FALSE int on success or FALSE on failure
@@ -156,7 +146,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -169,7 +158,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -182,7 +170,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -195,7 +182,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the connection resource. * Returns the connection resource.
* @return mixed * @return mixed
@@ -206,7 +192,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the connection reflector. * Returns the connection reflector.
* @return IDibiReflector * @return IDibiReflector
@@ -217,7 +202,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Result set driver factory. * Result set driver factory.
* @param resource * @param resource
@@ -231,11 +215,9 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/********************* SQL ****************d*g**/ /********************* SQL ****************d*g**/
/** /**
* Encodes data for use in a SQL statement. * Encodes data for use in a SQL statement.
* @param mixed value * @param mixed value
@@ -246,29 +228,28 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
public function escape($value, $type) public function escape($value, $type)
{ {
switch ($type) { switch ($type) {
case dibi::TEXT: case dibi::TEXT:
case dibi::BINARY: case dibi::BINARY:
return "'" . sqlite_escape_string($value) . "'"; return "'" . sqlite_escape_string($value) . "'";
case dibi::IDENTIFIER: case dibi::IDENTIFIER:
return '[' . strtr($value, '[]', ' ') . ']'; return '[' . strtr($value, '[]', ' ') . ']';
case dibi::BOOL: case dibi::BOOL:
return $value ? 1 : 0; return $value ? 1 : 0;
case dibi::DATE: case dibi::DATE:
return $value instanceof DateTime ? $value->format($this->fmtDate) : date($this->fmtDate, $value); return $value instanceof DateTime ? $value->format($this->fmtDate) : date($this->fmtDate, $value);
case dibi::DATETIME: case dibi::DATETIME:
return $value instanceof DateTime ? $value->format($this->fmtDateTime) : date($this->fmtDateTime, $value); return $value instanceof DateTime ? $value->format($this->fmtDateTime) : date($this->fmtDateTime, $value);
default: default:
throw new InvalidArgumentException('Unsupported type.'); throw new InvalidArgumentException('Unsupported type.');
} }
} }
/** /**
* Encodes string for use in a LIKE statement. * Encodes string for use in a LIKE statement.
* @param string * @param string
@@ -281,7 +262,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Decodes data from result set. * Decodes data from result set.
* @param string value * @param string value
@@ -298,26 +278,21 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
public function applyLimit(&$sql, $limit, $offset) public function applyLimit(& $sql, $limit, $offset)
{ {
if ($limit < 0 && $offset < 1) return; if ($limit >= 0 || $offset > 0) {
$sql .= ' LIMIT ' . $limit . ($offset > 0 ? ' OFFSET ' . (int) $offset : ''); $sql .= ' LIMIT ' . (int) $limit . ($offset > 0 ? ' OFFSET ' . (int) $offset : '');
}
} }
/********************* result set ****************d*g**/ /********************* result set ****************d*g**/
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -331,7 +306,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Fetches the row at current position and moves the internal cursor to the next position. * Fetches the row at current position and moves the internal cursor to the next position.
* @param bool TRUE for associative array, FALSE for numeric * @param bool TRUE for associative array, FALSE for numeric
@@ -355,7 +329,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -371,7 +344,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -382,7 +354,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns metadata for all columns in a result set. * Returns metadata for all columns in a result set.
* @return array * @return array
@@ -405,7 +376,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Returns the result set resource. * Returns the result set resource.
* @return mixed * @return mixed
@@ -416,11 +386,9 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/********************* user defined functions ****************d*g**/ /********************* user defined functions ****************d*g**/
/** /**
* Registers an user defined function for use in SQL statements. * Registers an user defined function for use in SQL statements.
* @param string function name * @param string function name
@@ -434,7 +402,6 @@ class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDri
} }
/** /**
* Registers an aggregating user defined function for use in SQL statements. * Registers an aggregating user defined function for use in SQL statements.
* @param string function name * @param string function name

View File

@@ -2,11 +2,7 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
@@ -23,14 +19,12 @@ class DibiSqliteReflector extends DibiObject implements IDibiReflector
private $driver; private $driver;
public function __construct(IDibiDriver $driver) public function __construct(IDibiDriver $driver)
{ {
$this->driver = $driver; $this->driver = $driver;
} }
/** /**
* Returns list of tables. * Returns list of tables.
* @return array * @return array
@@ -51,7 +45,6 @@ class DibiSqliteReflector extends DibiObject implements IDibiReflector
} }
/** /**
* Returns metadata for all columns in a table. * Returns metadata for all columns in a table.
* @param string * @param string
@@ -87,7 +80,6 @@ class DibiSqliteReflector extends DibiObject implements IDibiReflector
} }
/** /**
* Returns metadata for all indexes in a table. * Returns metadata for all indexes in a table.
* @param string * @param string
@@ -139,7 +131,6 @@ class DibiSqliteReflector extends DibiObject implements IDibiReflector
} }
/** /**
* Returns metadata for all foreign keys in a table. * Returns metadata for all foreign keys in a table.
* @param string * @param string

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* dibi connection. * dibi connection.
* *
@@ -45,7 +40,6 @@ class DibiConnection extends DibiObject
private $substitutes; private $substitutes;
/** /**
* Connection options: (see driver-specific options too) * Connection options: (see driver-specific options too)
* - lazy (bool) => if TRUE, connection will be established only when required * - lazy (bool) => if TRUE, connection will be established only when required
@@ -89,10 +83,10 @@ class DibiConnection extends DibiObject
$config['driver'] = dibi::$defaultDriver; $config['driver'] = dibi::$defaultDriver;
} }
$driver = preg_replace('#[^a-z0-9_]#', '_', strtolower($config['driver'])); $class = preg_replace(array('#\W#', '#sql#'), array('_', 'Sql'), ucfirst(strtolower($config['driver'])));
$class = "Dibi" . $driver . "Driver"; $class = "Dibi{$class}Driver";
if (!class_exists($class, FALSE)) { if (!class_exists($class, FALSE)) {
include_once dirname(__FILE__) . "/../drivers/$driver.php"; include_once dirname(__FILE__) . "/../drivers/$class.php";
if (!class_exists($class, FALSE)) { if (!class_exists($class, FALSE)) {
throw new DibiException("Unable to create instance of dibi driver '$class'."); throw new DibiException("Unable to create instance of dibi driver '$class'.");
@@ -139,7 +133,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Automatically frees the resources allocated for this result set. * Automatically frees the resources allocated for this result set.
* @return void * @return void
@@ -151,7 +144,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Connects to a database. * Connects to a database.
* @return void * @return void
@@ -171,7 +163,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Disconnects from a database. * Disconnects from a database.
* @return void * @return void
@@ -183,7 +174,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Returns TRUE when connection was established. * Returns TRUE when connection was established.
* @return bool * @return bool
@@ -194,7 +184,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Returns configuration variable. If no $key is passed, returns the entire array. * Returns configuration variable. If no $key is passed, returns the entire array.
* @see self::__construct * @see self::__construct
@@ -216,7 +205,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Apply configuration alias or default values. * Apply configuration alias or default values.
* @param array connect configuration * @param array connect configuration
@@ -224,10 +212,12 @@ class DibiConnection extends DibiObject
* @param string alias key * @param string alias key
* @return void * @return void
*/ */
public static function alias(&$config, $key, $alias) public static function alias(& $config, $key, $alias)
{ {
$foo = & $config; $foo = & $config;
foreach (explode('|', $key) as $key) $foo = & $foo[$key]; foreach (explode('|', $key) as $key) {
$foo = & $foo[$key];
}
if (!isset($foo) && isset($config[$alias])) { if (!isset($foo) && isset($config[$alias])) {
$foo = $config[$alias]; $foo = $config[$alias];
@@ -236,7 +226,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Returns the driver and connects to a database in lazy mode. * Returns the driver and connects to a database in lazy mode.
* @return IDibiDriver * @return IDibiDriver
@@ -248,7 +237,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Generates (translates) and executes SQL query. * Generates (translates) and executes SQL query.
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -262,7 +250,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Generates SQL query. * Generates SQL query.
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -276,7 +263,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Generates and prints SQL query. * Generates and prints SQL query.
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -300,7 +286,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Generates (translates) and returns SQL query as DibiDataSource. * Generates (translates) and returns SQL query as DibiDataSource.
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -314,7 +299,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Generates SQL query. * Generates SQL query.
* @param array * @param array
@@ -327,7 +311,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Executes the SQL query. * Executes the SQL query.
* @param string SQL statement. * @param string SQL statement.
@@ -338,6 +321,7 @@ class DibiConnection extends DibiObject
{ {
$this->connected || $this->connect(); $this->connected || $this->connect();
dibi::$sql = $sql;
$event = $this->onEvent ? new DibiEvent($this, DibiEvent::QUERY, $sql) : NULL; $event = $this->onEvent ? new DibiEvent($this, DibiEvent::QUERY, $sql) : NULL;
try { try {
$res = $this->driver->query($sql); $res = $this->driver->query($sql);
@@ -358,7 +342,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
* @return int number of rows * @return int number of rows
@@ -368,12 +351,13 @@ class DibiConnection extends DibiObject
{ {
$this->connected || $this->connect(); $this->connected || $this->connect();
$rows = $this->driver->getAffectedRows(); $rows = $this->driver->getAffectedRows();
if (!is_int($rows) || $rows < 0) throw new DibiException('Cannot retrieve number of affected rows.'); if (!is_int($rows) || $rows < 0) {
throw new DibiException('Cannot retrieve number of affected rows.');
}
return $rows; return $rows;
} }
/** /**
* Gets the number of affected rows. Alias for getAffectedRows(). * Gets the number of affected rows. Alias for getAffectedRows().
* @return int number of rows * @return int number of rows
@@ -385,7 +369,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
* @param string optional sequence name * @param string optional sequence name
@@ -396,12 +379,13 @@ class DibiConnection extends DibiObject
{ {
$this->connected || $this->connect(); $this->connected || $this->connect();
$id = $this->driver->getInsertId($sequence); $id = $this->driver->getInsertId($sequence);
if ($id < 1) throw new DibiException('Cannot retrieve last generated ID.'); if ($id < 1) {
throw new DibiException('Cannot retrieve last generated ID.');
}
return (int) $id; return (int) $id;
} }
/** /**
* Retrieves the ID generated for an AUTO_INCREMENT column. Alias for getInsertId(). * Retrieves the ID generated for an AUTO_INCREMENT column. Alias for getInsertId().
* @param string optional sequence name * @param string optional sequence name
@@ -414,7 +398,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Begins a transaction (if supported). * Begins a transaction (if supported).
* @param string optional savepoint name * @param string optional savepoint name
@@ -435,7 +418,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Commits statements in a transaction. * Commits statements in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -456,7 +438,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Rollback changes in a transaction. * Rollback changes in a transaction.
* @param string optional savepoint name * @param string optional savepoint name
@@ -477,7 +458,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Result set factory. * Result set factory.
* @param IDibiResultDriver * @param IDibiResultDriver
@@ -491,11 +471,9 @@ class DibiConnection extends DibiObject
} }
/********************* fluent SQL builders ****************d*g**/ /********************* fluent SQL builders ****************d*g**/
/** /**
* @return DibiFluent * @return DibiFluent
*/ */
@@ -505,7 +483,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* @param string column name * @param string column name
* @return DibiFluent * @return DibiFluent
@@ -517,7 +494,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* @param string table * @param string table
* @param array * @param array
@@ -532,7 +508,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* @param string table * @param string table
* @param array * @param array
@@ -550,7 +525,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* @param string table * @param string table
* @return DibiFluent * @return DibiFluent
@@ -561,11 +535,9 @@ class DibiConnection extends DibiObject
} }
/********************* substitutions ****************d*g**/ /********************* substitutions ****************d*g**/
/** /**
* Returns substitution hashmap. * Returns substitution hashmap.
* @return DibiHashMap * @return DibiHashMap
@@ -576,7 +548,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Provides substitution. * Provides substitution.
* @return string * @return string
@@ -587,7 +558,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Substitution callback. * Substitution callback.
*/ */
@@ -597,11 +567,9 @@ class DibiConnection extends DibiObject
} }
/********************* shortcuts ****************d*g**/ /********************* shortcuts ****************d*g**/
/** /**
* Executes SQL query and fetch result - shortcut for query() & fetch(). * Executes SQL query and fetch result - shortcut for query() & fetch().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -615,11 +583,10 @@ class DibiConnection extends DibiObject
} }
/** /**
* Executes SQL query and fetch results - shortcut for query() & fetchAll(). * Executes SQL query and fetch results - shortcut for query() & fetchAll().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
* @return array of DibiRow * @return DibiRow[]
* @throws DibiException * @throws DibiException
*/ */
public function fetchAll($args) public function fetchAll($args)
@@ -629,7 +596,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Executes SQL query and fetch first column - shortcut for query() & fetchSingle(). * Executes SQL query and fetch first column - shortcut for query() & fetchSingle().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -643,7 +609,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Executes SQL query and fetch pairs - shortcut for query() & fetchPairs(). * Executes SQL query and fetch pairs - shortcut for query() & fetchPairs().
* @param array|mixed one or more arguments * @param array|mixed one or more arguments
@@ -657,11 +622,9 @@ class DibiConnection extends DibiObject
} }
/********************* misc ****************d*g**/ /********************* misc ****************d*g**/
/** /**
* Import SQL dump from file - extreme fast! * Import SQL dump from file - extreme fast!
* @param string filename * @param string filename
@@ -697,7 +660,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Gets a information about the current database. * Gets a information about the current database.
* @return DibiDatabaseInfo * @return DibiDatabaseInfo
@@ -709,7 +671,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Prevents unserialization. * Prevents unserialization.
*/ */
@@ -719,7 +680,6 @@ class DibiConnection extends DibiObject
} }
/** /**
* Prevents serialization. * Prevents serialization.
*/ */

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* Default implementation of IDataSource for dibi. * Default implementation of IDataSource for dibi.
* *
@@ -55,7 +50,6 @@ class DibiDataSource extends DibiObject implements IDataSource
private $limit; private $limit;
/** /**
* @param string SQL command or table or view name, as data source * @param string SQL command or table or view name, as data source
* @param DibiConnection connection * @param DibiConnection connection
@@ -71,12 +65,11 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Selects columns to query. * Selects columns to query.
* @param string|array column name or array of column names * @param string|array column name or array of column names
* @param string column alias * @param string column alias
* @return DibiDataSource provides a fluent interface * @return self
*/ */
public function select($col, $as = NULL) public function select($col, $as = NULL)
{ {
@@ -90,11 +83,10 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Adds conditions to query. * Adds conditions to query.
* @param mixed conditions * @param mixed conditions
* @return DibiDataSource provides a fluent interface * @return self
*/ */
public function where($cond) public function where($cond)
{ {
@@ -109,12 +101,11 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Selects columns to order by. * Selects columns to order by.
* @param string|array column name or array of column names * @param string|array column name or array of column names
* @param string sorting direction * @param string sorting direction
* @return DibiDataSource provides a fluent interface * @return self
*/ */
public function orderBy($row, $sorting = 'ASC') public function orderBy($row, $sorting = 'ASC')
{ {
@@ -128,12 +119,11 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Limits number of rows. * Limits number of rows.
* @param int limit * @param int limit
* @param int offset * @param int offset
* @return DibiDataSource provides a fluent interface * @return self
*/ */
public function applyLimit($limit, $offset = NULL) public function applyLimit($limit, $offset = NULL)
{ {
@@ -144,7 +134,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Returns the dibi connection. * Returns the dibi connection.
* @return DibiConnection * @return DibiConnection
@@ -155,11 +144,9 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/********************* executing ****************d*g**/ /********************* executing ****************d*g**/
/** /**
* Returns (and queries) DibiResult. * Returns (and queries) DibiResult.
* @return DibiResult * @return DibiResult
@@ -173,7 +160,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* @return DibiResultIterator * @return DibiResultIterator
*/ */
@@ -183,7 +169,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Generates, executes SQL query and fetches the single row. * Generates, executes SQL query and fetches the single row.
* @return DibiRow|FALSE array on success, FALSE if no next record * @return DibiRow|FALSE array on success, FALSE if no next record
@@ -194,7 +179,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Like fetch(), but returns only first field. * Like fetch(), but returns only first field.
* @return mixed value on success, FALSE if no next record * @return mixed value on success, FALSE if no next record
@@ -205,7 +189,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table. * Fetches all records from table.
* @return array * @return array
@@ -216,7 +199,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table and returns associative tree. * Fetches all records from table and returns associative tree.
* @param string associative descriptor * @param string associative descriptor
@@ -228,7 +210,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table like $key => $value pairs. * Fetches all records from table like $key => $value pairs.
* @param string associative key * @param string associative key
@@ -241,7 +222,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Discards the internal cache. * Discards the internal cache.
* @return void * @return void
@@ -252,11 +232,9 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/********************* exporting ****************d*g**/ /********************* exporting ****************d*g**/
/** /**
* Returns this data source wrapped in DibiFluent object. * Returns this data source wrapped in DibiFluent object.
* @return DibiFluent * @return DibiFluent
@@ -267,7 +245,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Returns this data source wrapped in DibiDataSource object. * Returns this data source wrapped in DibiDataSource object.
* @return DibiDataSource * @return DibiDataSource
@@ -278,7 +255,6 @@ class DibiDataSource extends DibiObject implements IDataSource
} }
/** /**
* Returns SQL query. * Returns SQL query.
* @return string * @return string
@@ -299,11 +275,9 @@ FROM %SQL', $this->sql, '
} }
/********************* counting ****************d*g**/ /********************* counting ****************d*g**/
/** /**
* Returns the number of rows in a given data source. * Returns the number of rows in a given data source.
* @return int * @return int
@@ -321,7 +295,6 @@ FROM %SQL', $this->sql, '
} }
/** /**
* Returns the number of rows in a given data source. * Returns the number of rows in a given data source.
* @return int * @return int

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* Reflection metadata class for a database. * Reflection metadata class for a database.
* *
@@ -33,7 +28,6 @@ class DibiDatabaseInfo extends DibiObject
private $tables; private $tables;
public function __construct(IDibiReflector $reflector, $name) public function __construct(IDibiReflector $reflector, $name)
{ {
$this->reflector = $reflector; $this->reflector = $reflector;
@@ -41,7 +35,6 @@ class DibiDatabaseInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -51,9 +44,8 @@ class DibiDatabaseInfo extends DibiObject
} }
/** /**
* @return array of DibiTableInfo * @return DibiTableInfo[]
*/ */
public function getTables() public function getTables()
{ {
@@ -62,9 +54,8 @@ class DibiDatabaseInfo extends DibiObject
} }
/** /**
* @return array of string * @return string[]
*/ */
public function getTableNames() public function getTableNames()
{ {
@@ -77,7 +68,6 @@ class DibiDatabaseInfo extends DibiObject
} }
/** /**
* @param string * @param string
* @return DibiTableInfo * @return DibiTableInfo
@@ -95,7 +85,6 @@ class DibiDatabaseInfo extends DibiObject
} }
/** /**
* @param string * @param string
* @return bool * @return bool
@@ -107,7 +96,6 @@ class DibiDatabaseInfo extends DibiObject
} }
/** /**
* @return void * @return void
*/ */
@@ -124,8 +112,6 @@ class DibiDatabaseInfo extends DibiObject
} }
/** /**
* Reflection metadata class for a database table. * Reflection metadata class for a database table.
* *
@@ -164,7 +150,6 @@ class DibiTableInfo extends DibiObject
private $primaryKey; private $primaryKey;
public function __construct(IDibiReflector $reflector, array $info) public function __construct(IDibiReflector $reflector, array $info)
{ {
$this->reflector = $reflector; $this->reflector = $reflector;
@@ -173,7 +158,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -183,7 +167,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return bool * @return bool
*/ */
@@ -193,9 +176,8 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return array of DibiColumnInfo * @return DibiColumnInfo[]
*/ */
public function getColumns() public function getColumns()
{ {
@@ -204,9 +186,8 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return array of string * @return string[]
*/ */
public function getColumnNames() public function getColumnNames()
{ {
@@ -219,7 +200,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @param string * @param string
* @return DibiColumnInfo * @return DibiColumnInfo
@@ -237,7 +217,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @param string * @param string
* @return bool * @return bool
@@ -249,9 +228,8 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return array of DibiForeignKeyInfo * @return DibiForeignKeyInfo[]
*/ */
public function getForeignKeys() public function getForeignKeys()
{ {
@@ -260,9 +238,8 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return array of DibiIndexInfo * @return DibiIndexInfo[]
*/ */
public function getIndexes() public function getIndexes()
{ {
@@ -271,7 +248,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return DibiIndexInfo * @return DibiIndexInfo
*/ */
@@ -282,7 +258,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return void * @return void
*/ */
@@ -297,7 +272,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return void * @return void
*/ */
@@ -319,7 +293,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* @return void * @return void
*/ */
@@ -331,8 +304,6 @@ class DibiTableInfo extends DibiObject
} }
/** /**
* Reflection metadata class for a result set. * Reflection metadata class for a result set.
* *
@@ -354,16 +325,14 @@ class DibiResultInfo extends DibiObject
private $names; private $names;
public function __construct(IDibiResultDriver $driver) public function __construct(IDibiResultDriver $driver)
{ {
$this->driver = $driver; $this->driver = $driver;
} }
/** /**
* @return array of DibiColumnInfo * @return DibiColumnInfo[]
*/ */
public function getColumns() public function getColumns()
{ {
@@ -372,10 +341,9 @@ class DibiResultInfo extends DibiObject
} }
/** /**
* @param bool * @param bool
* @return array of string * @return string[]
*/ */
public function getColumnNames($fullNames = FALSE) public function getColumnNames($fullNames = FALSE)
{ {
@@ -388,7 +356,6 @@ class DibiResultInfo extends DibiObject
} }
/** /**
* @param string * @param string
* @return DibiColumnInfo * @return DibiColumnInfo
@@ -406,7 +373,6 @@ class DibiResultInfo extends DibiObject
} }
/** /**
* @param string * @param string
* @return bool * @return bool
@@ -418,7 +384,6 @@ class DibiResultInfo extends DibiObject
} }
/** /**
* @return void * @return void
*/ */
@@ -436,8 +401,6 @@ class DibiResultInfo extends DibiObject
} }
/** /**
* Reflection metadata class for a table or result set column. * Reflection metadata class for a table or result set column.
* *
@@ -467,7 +430,6 @@ class DibiColumnInfo extends DibiObject
private $info; private $info;
public function __construct(IDibiReflector $reflector = NULL, array $info) public function __construct(IDibiReflector $reflector = NULL, array $info)
{ {
$this->reflector = $reflector; $this->reflector = $reflector;
@@ -475,7 +437,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -485,7 +446,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -495,7 +455,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return bool * @return bool
*/ */
@@ -505,7 +464,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return DibiTableInfo * @return DibiTableInfo
*/ */
@@ -518,7 +476,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -528,7 +485,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -538,7 +494,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return mixed * @return mixed
*/ */
@@ -548,7 +503,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return int * @return int
*/ */
@@ -558,7 +512,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return bool * @return bool
*/ */
@@ -568,7 +521,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return bool * @return bool
*/ */
@@ -578,7 +530,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return bool * @return bool
*/ */
@@ -588,7 +539,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @return mixed * @return mixed
*/ */
@@ -598,7 +548,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @param string * @param string
* @return mixed * @return mixed
@@ -609,7 +558,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* Heuristic type detection. * Heuristic type detection.
* @param string * @param string
@@ -621,13 +569,13 @@ class DibiColumnInfo extends DibiObject
static $patterns = array( static $patterns = array(
'^_' => dibi::TEXT, // PostgreSQL arrays '^_' => dibi::TEXT, // PostgreSQL arrays
'BYTEA|BLOB|BIN' => dibi::BINARY, 'BYTEA|BLOB|BIN' => dibi::BINARY,
'TEXT|CHAR' => dibi::TEXT, 'TEXT|CHAR|POINT|INTERVAL' => dibi::TEXT,
'YEAR|BYTE|COUNTER|SERIAL|INT|LONG' => dibi::INTEGER, 'YEAR|BYTE|COUNTER|SERIAL|INT|LONG|SHORT' => dibi::INTEGER,
'CURRENCY|REAL|MONEY|FLOAT|DOUBLE|DECIMAL|NUMERIC|NUMBER' => dibi::FLOAT, 'CURRENCY|REAL|MONEY|FLOAT|DOUBLE|DECIMAL|NUMERIC|NUMBER' => dibi::FLOAT,
'^TIME$' => dibi::TIME, '^TIME$' => dibi::TIME,
'TIME' => dibi::DATETIME, // DATETIME, TIMESTAMP 'TIME' => dibi::DATETIME, // DATETIME, TIMESTAMP
'DATE' => dibi::DATE, 'DATE' => dibi::DATE,
'BOOL|BIT' => dibi::BOOL, 'BOOL' => dibi::BOOL,
); );
foreach ($patterns as $s => $val) { foreach ($patterns as $s => $val) {
@@ -639,7 +587,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* @internal * @internal
*/ */
@@ -654,8 +601,6 @@ class DibiColumnInfo extends DibiObject
} }
/** /**
* Reflection metadata class for a foreign key. * Reflection metadata class for a foreign key.
* *
@@ -675,7 +620,6 @@ class DibiForeignKeyInfo extends DibiObject
private $references; private $references;
public function __construct($name, array $references) public function __construct($name, array $references)
{ {
$this->name = $name; $this->name = $name;
@@ -683,7 +627,6 @@ class DibiForeignKeyInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -693,7 +636,6 @@ class DibiForeignKeyInfo extends DibiObject
} }
/** /**
* @return array * @return array
*/ */
@@ -705,8 +647,6 @@ class DibiForeignKeyInfo extends DibiObject
} }
/** /**
* Reflection metadata class for a index or primary key. * Reflection metadata class for a index or primary key.
* *
@@ -730,7 +670,6 @@ class DibiIndexInfo extends DibiObject
} }
/** /**
* @return string * @return string
*/ */
@@ -740,7 +679,6 @@ class DibiIndexInfo extends DibiObject
} }
/** /**
* @return array * @return array
*/ */
@@ -750,7 +688,6 @@ class DibiIndexInfo extends DibiObject
} }
/** /**
* @return bool * @return bool
*/ */
@@ -760,7 +697,6 @@ class DibiIndexInfo extends DibiObject
} }
/** /**
* @return bool * @return bool
*/ */

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* DateTime with serialization and timestamp support for PHP 5.2. * DateTime with serialization and timestamp support for PHP 5.2.
* *
@@ -33,7 +28,6 @@ class DibiDateTime extends DateTime
} }
public function modifyClone($modify = '') public function modifyClone($modify = '')
{ {
$dolly = clone($this); $dolly = clone($this);
@@ -41,7 +35,6 @@ class DibiDateTime extends DateTime
} }
public function modify($modify) public function modify($modify)
{ {
parent::modify($modify); parent::modify($modify);
@@ -49,7 +42,6 @@ class DibiDateTime extends DateTime
} }
public function __sleep() public function __sleep()
{ {
$this->fix = array($this->format('Y-m-d H:i:s'), $this->getTimezone()->getName()); $this->fix = array($this->format('Y-m-d H:i:s'), $this->getTimezone()->getName());
@@ -57,7 +49,6 @@ class DibiDateTime extends DateTime
} }
public function __wakeup() public function __wakeup()
{ {
$this->__construct($this->fix[0], new DateTimeZone($this->fix[1])); $this->__construct($this->fix[0], new DateTimeZone($this->fix[1]));
@@ -65,21 +56,18 @@ class DibiDateTime extends DateTime
} }
public function getTimestamp() public function getTimestamp()
{ {
return (int) $this->format('U'); return (int) $this->format('U');
} }
public function setTimestamp($timestamp) public function setTimestamp($timestamp)
{ {
return $this->__construct(date('Y-m-d H:i:s', $timestamp), new DateTimeZone($this->getTimezone()->getName())); // getTimeZone() crashes in PHP 5.2.6 return $this->__construct(date('Y-m-d H:i:s', $timestamp), new DateTimeZone($this->getTimezone()->getName())); // getTimeZone() crashes in PHP 5.2.6
} }
public function __toString() public function __toString()
{ {
return $this->format('Y-m-d H:i:s'); return $this->format('Y-m-d H:i:s');

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* Profiler & logger event. * Profiler & logger event.
* *
@@ -54,7 +49,6 @@ class DibiEvent
public $source; public $source;
public function __construct(DibiConnection $connection, $type, $sql = NULL) public function __construct(DibiConnection $connection, $type, $sql = NULL)
{ {
$this->connection = $connection; $this->connection = $connection;
@@ -85,7 +79,6 @@ class DibiEvent
} }
public function done($result = NULL) public function done($result = NULL)
{ {
$this->result = $result; $this->result = $result;

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* dibi common exception. * dibi common exception.
* *
@@ -36,7 +31,6 @@ class DibiException extends Exception
} }
/** /**
* @return string The SQL passed to the constructor * @return string The SQL passed to the constructor
*/ */
@@ -46,7 +40,6 @@ class DibiException extends Exception
} }
/** /**
* @return string string represenation of exception with SQL command * @return string string represenation of exception with SQL command
*/ */
@@ -58,8 +51,6 @@ class DibiException extends Exception
} }
/** /**
* database server exception. * database server exception.
* *
@@ -72,12 +63,10 @@ class DibiDriverException extends DibiException
/********************* error catching ****************d*g**/ /********************* error catching ****************d*g**/
/** @var string */ /** @var string */
private static $errorMsg; private static $errorMsg;
/** /**
* Starts catching potential errors/warnings. * Starts catching potential errors/warnings.
* @return void * @return void
@@ -89,7 +78,6 @@ class DibiDriverException extends DibiException
} }
/** /**
* Returns catched error/warning message. * Returns catched error/warning message.
* @param string catched message * @param string catched message
@@ -104,7 +92,6 @@ class DibiDriverException extends DibiException
} }
/** /**
* Internal error handler. Do not call directly. * Internal error handler. Do not call directly.
* @internal * @internal
@@ -124,8 +111,6 @@ class DibiDriverException extends DibiException
} }
/** /**
* PCRE exception. * PCRE exception.
* *
@@ -149,7 +134,6 @@ class DibiPcreException extends Exception {
} }
/** /**
* @package dibi * @package dibi
*/ */
@@ -157,7 +141,6 @@ class DibiNotImplementedException extends DibiException
{} {}
/** /**
* @package dibi * @package dibi
*/ */

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* dibi file logger. * dibi file logger.
* *
@@ -26,7 +21,6 @@ class DibiFileLogger extends DibiObject
public $filter; public $filter;
public function __construct($file, $filter = NULL) public function __construct($file, $filter = NULL)
{ {
$this->file = $file; $this->file = $file;
@@ -34,7 +28,6 @@ class DibiFileLogger extends DibiObject
} }
/** /**
* After event notification. * After event notification.
* @return void * @return void
@@ -46,7 +39,9 @@ class DibiFileLogger extends DibiObject
} }
$handle = fopen($this->file, 'a'); $handle = fopen($this->file, 'a');
if (!$handle) return; // or throw exception? if (!$handle) {
return; // or throw exception?
}
flock($handle, LOCK_EX); flock($handle, LOCK_EX);
if ($event->result instanceof Exception) { if ($event->result instanceof Exception) {
@@ -65,7 +60,7 @@ class DibiFileLogger extends DibiObject
fwrite($handle, fwrite($handle,
"OK: " . $event->sql "OK: " . $event->sql
. ($event->count ? ";\n-- rows: " . $event->count : '') . ($event->count ? ";\n-- rows: " . $event->count : '')
. "\n-- takes: " . sprintf('%0.3f', $event->time * 1000) . ' ms' . "\n-- takes: " . sprintf('%0.3f ms', $event->time * 1000)
. "\n-- source: " . implode(':', $event->source) . "\n-- source: " . implode(':', $event->source)
. "\n-- driver: " . $event->connection->getConfig('driver') . '/' . $event->connection->getConfig('name') . "\n-- driver: " . $event->connection->getConfig('driver') . '/' . $event->connection->getConfig('name')
. "\n-- " . date('Y-m-d H:i:s') . "\n-- " . date('Y-m-d H:i:s')

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* dibi FirePHP logger. * dibi FirePHP logger.
* *
@@ -38,7 +33,6 @@ class DibiFirePhpLogger extends DibiObject
private static $fireTable = array(array('Time', 'SQL Statement', 'Rows', 'Connection')); private static $fireTable = array(array('Time', 'SQL Statement', 'Rows', 'Connection'));
/** /**
* @return bool * @return bool
*/ */
@@ -48,14 +42,12 @@ class DibiFirePhpLogger extends DibiObject
} }
public function __construct($filter = NULL) public function __construct($filter = NULL)
{ {
$this->filter = $filter ? (int) $filter : DibiEvent::QUERY; $this->filter = $filter ? (int) $filter : DibiEvent::QUERY;
} }
/** /**
* After event notification. * After event notification.
* @return void * @return void

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* dibi SQL builder via fluent interfaces. EXPERIMENTAL! * dibi SQL builder via fluent interfaces. EXPERIMENTAL!
* *
@@ -101,7 +96,6 @@ class DibiFluent extends DibiObject implements IDataSource
private static $normalizer; private static $normalizer;
/** /**
* @param DibiConnection * @param DibiConnection
*/ */
@@ -115,12 +109,11 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Appends new argument to the clause. * Appends new argument to the clause.
* @param string clause name * @param string clause name
* @param array arguments * @param array arguments
* @return DibiFluent provides a fluent interface * @return self
*/ */
public function __call($clause, $args) public function __call($clause, $args)
{ {
@@ -205,11 +198,10 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Switch to a clause. * Switch to a clause.
* @param string clause name * @param string clause name
* @return DibiFluent provides a fluent interface * @return self
*/ */
public function clause($clause, $remove = FALSE) public function clause($clause, $remove = FALSE)
{ {
@@ -227,11 +219,10 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Removes a clause. * Removes a clause.
* @param string clause name * @param string clause name
* @return DibiFluent provides a fluent interface * @return self
*/ */
public function removeClause($clause) public function removeClause($clause)
{ {
@@ -240,12 +231,11 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Change a SQL flag. * Change a SQL flag.
* @param string flag name * @param string flag name
* @param bool value * @param bool value
* @return DibiFluent provides a fluent interface * @return self
*/ */
public function setFlag($flag, $value = TRUE) public function setFlag($flag, $value = TRUE)
{ {
@@ -259,7 +249,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Is a flag set? * Is a flag set?
* @param string flag name * @param string flag name
@@ -271,7 +260,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Returns SQL command. * Returns SQL command.
* @return string * @return string
@@ -282,7 +270,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Returns the dibi connection. * Returns the dibi connection.
* @return DibiConnection * @return DibiConnection
@@ -293,12 +280,11 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Adds DibiResult setup. * Adds DibiResult setup.
* @param string method * @param string method
* @param mixed args * @param mixed args
* @return DibiFluent provides a fluent interface * @return self
*/ */
public function setupResult($method) public function setupResult($method)
{ {
@@ -307,11 +293,9 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/********************* executing ****************d*g**/ /********************* executing ****************d*g**/
/** /**
* Generates and executes SQL query. * Generates and executes SQL query.
* @param mixed what to return? * @param mixed what to return?
@@ -325,7 +309,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Generates, executes SQL query and fetches the single row. * Generates, executes SQL query and fetches the single row.
* @return DibiRow|FALSE array on success, FALSE if no next record * @return DibiRow|FALSE array on success, FALSE if no next record
@@ -340,7 +323,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Like fetch(), but returns only first field. * Like fetch(), but returns only first field.
* @return mixed value on success, FALSE if no next record * @return mixed value on success, FALSE if no next record
@@ -355,7 +337,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table. * Fetches all records from table.
* @param int offset * @param int offset
@@ -368,7 +349,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table and returns associative tree. * Fetches all records from table and returns associative tree.
* @param string associative descriptor * @param string associative descriptor
@@ -380,7 +360,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table like $key => $value pairs. * Fetches all records from table like $key => $value pairs.
* @param string associative key * @param string associative key
@@ -393,7 +372,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Required by the IteratorAggregate interface. * Required by the IteratorAggregate interface.
* @param int offset * @param int offset
@@ -406,7 +384,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Generates and prints SQL query or it's part. * Generates and prints SQL query or it's part.
* @param string clause name * @param string clause name
@@ -418,7 +395,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* @return int * @return int
*/ */
@@ -430,7 +406,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* @return DibiResult * @return DibiResult
*/ */
@@ -444,11 +419,9 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/********************* exporting ****************d*g**/ /********************* exporting ****************d*g**/
/** /**
* @return DibiDataSource * @return DibiDataSource
*/ */
@@ -458,7 +431,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Returns SQL query. * Returns SQL query.
* @return string * @return string
@@ -473,7 +445,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Generates parameters for DibiTranslator. * Generates parameters for DibiTranslator.
* @param string clause name * @param string clause name
@@ -499,7 +470,9 @@ class DibiFluent extends DibiObject implements IDataSource
if ($clause === $this->command && $this->flags) { if ($clause === $this->command && $this->flags) {
$args[] = implode(' ', array_keys($this->flags)); $args[] = implode(' ', array_keys($this->flags));
} }
foreach ($statement as $arg) $args[] = $arg; foreach ($statement as $arg) {
$args[] = $arg;
}
} }
} }
@@ -507,7 +480,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
/** /**
* Format camelCase clause name to UPPER CASE. * Format camelCase clause name to UPPER CASE.
* @param string * @param string
@@ -524,7 +496,6 @@ class DibiFluent extends DibiObject implements IDataSource
} }
public function __clone() public function __clone()
{ {
// remove references // remove references

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* Lazy cached storage. * Lazy cached storage.
* *
@@ -29,7 +24,6 @@ abstract class DibiHashMapBase
} }
public function setCallback($callback) public function setCallback($callback)
{ {
if (!is_callable($callback)) { if (!is_callable($callback)) {
@@ -40,7 +34,6 @@ abstract class DibiHashMapBase
} }
public function getCallback() public function getCallback()
{ {
return $this->callback; return $this->callback;
@@ -49,7 +42,6 @@ abstract class DibiHashMapBase
} }
/** /**
* Lazy cached storage. * Lazy cached storage.
* *
@@ -68,7 +60,6 @@ final class DibiHashMap extends DibiHashMapBase
} }
public function __get($nm) public function __get($nm)
{ {
if ($nm == '') { if ($nm == '') {

View File

@@ -2,19 +2,15 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* SQL literal value. * SQL literal value.
* *
* @author David Grudl * @author David Grudl
* @package dibi
*/ */
class DibiLiteral extends DibiObject class DibiLiteral extends DibiObject
{ {
@@ -28,7 +24,6 @@ class DibiLiteral extends DibiObject
} }
/** /**
* @return string * @return string
*/ */

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* DibiObject is the ultimate ancestor of all instantiable classes. * DibiObject is the ultimate ancestor of all instantiable classes.
* *
@@ -58,7 +53,6 @@ abstract class DibiObject
private static $extMethods; private static $extMethods;
/** /**
* Returns the name of the class of this object. * Returns the name of the class of this object.
* @return string * @return string
@@ -69,7 +63,6 @@ abstract class DibiObject
} }
/** /**
* Access to reflection. * Access to reflection.
* @return \ReflectionObject * @return \ReflectionObject
@@ -80,7 +73,6 @@ abstract class DibiObject
} }
/** /**
* Call to undefined method. * Call to undefined method.
* @param string method name * @param string method name
@@ -125,7 +117,6 @@ abstract class DibiObject
} }
/** /**
* Call to undefined static method. * Call to undefined static method.
* @param string method name (in lower case!) * @param string method name (in lower case!)
@@ -140,7 +131,6 @@ abstract class DibiObject
} }
/** /**
* Adding method to class. * Adding method to class.
* @param string method name * @param string method name
@@ -158,7 +148,9 @@ abstract class DibiObject
self::$extMethods[$pair[1]][''] = NULL; self::$extMethods[$pair[1]][''] = NULL;
} }
} }
if ($name === NULL) return NULL; if ($name === NULL) {
return NULL;
}
} }
$name = strtolower($name); $name = strtolower($name);
@@ -202,14 +194,13 @@ abstract class DibiObject
} }
/** /**
* Returns property value. Do not call directly. * Returns property value. Do not call directly.
* @param string property name * @param string property name
* @return mixed property value * @return mixed property value
* @throws \LogicException if the property is not defined. * @throws \LogicException if the property is not defined.
*/ */
public function &__get($name) public function & __get($name)
{ {
$class = get_class($this); $class = get_class($this);
@@ -222,8 +213,8 @@ abstract class DibiObject
$m = 'get' . $name; $m = 'get' . $name;
if (self::hasAccessor($class, $m)) { if (self::hasAccessor($class, $m)) {
// ampersands: // ampersands:
// - uses &__get() because declaration should be forward compatible (e.g. with Nette\Web\Html) // - uses & __get() because declaration should be forward compatible (e.g. with Nette\Web\Html)
// - doesn't call &$this->$m because user could bypass property setter by: $x = & $obj->property; $x = 'new value'; // - doesn't call & $this->$m because user could bypass property setter by: $x = & $obj->property; $x = 'new value';
$val = $this->$m(); $val = $this->$m();
return $val; return $val;
} }
@@ -239,7 +230,6 @@ abstract class DibiObject
} }
/** /**
* Sets value of a property. Do not call directly. * Sets value of a property. Do not call directly.
* @param string property name * @param string property name
@@ -274,7 +264,6 @@ abstract class DibiObject
} }
/** /**
* Is property defined? * Is property defined?
* @param string property name * @param string property name
@@ -287,7 +276,6 @@ abstract class DibiObject
} }
/** /**
* Access to undeclared property. * Access to undeclared property.
* @param string property name * @param string property name
@@ -301,7 +289,6 @@ abstract class DibiObject
} }
/** /**
* Has property an accessor? * Has property an accessor?
* @param string class name * @param string class name

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* dibi result set. * dibi result set.
* *
@@ -54,11 +49,13 @@ class DibiResult extends DibiObject implements IDataSource
/** @var string returned object class */ /** @var string returned object class */
private $rowClass = 'DibiRow'; private $rowClass = 'DibiRow';
/** @var Callback returned object factory*/
private $rowFactory;
/** @var array format */ /** @var array format */
private $formats = array(); private $formats = array();
/** /**
* @param IDibiResultDriver * @param IDibiResultDriver
*/ */
@@ -69,7 +66,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* @deprecated * @deprecated
*/ */
@@ -79,7 +75,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Frees the resources allocated for this result set. * Frees the resources allocated for this result set.
* @return void * @return void
@@ -93,7 +88,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Safe access to property $driver. * Safe access to property $driver.
* @return IDibiResultDriver * @return IDibiResultDriver
@@ -109,11 +103,9 @@ class DibiResult extends DibiObject implements IDataSource
} }
/********************* rows ****************d*g**/ /********************* rows ****************d*g**/
/** /**
* Moves cursor position without fetching row. * Moves cursor position without fetching row.
* @param int the 0-based cursor pos to seek to * @param int the 0-based cursor pos to seek to
@@ -126,7 +118,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Required by the Countable interface. * Required by the Countable interface.
* @return int * @return int
@@ -137,7 +128,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Returns the number of rows in a result set. * Returns the number of rows in a result set.
* @return int * @return int
@@ -148,7 +138,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Returns the number of rows in a result set. Alias for getRowCount(). * Returns the number of rows in a result set. Alias for getRowCount().
* @deprecated * @deprecated
@@ -160,7 +149,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Required by the IteratorAggregate interface. * Required by the IteratorAggregate interface.
* @return DibiResultIterator * @return DibiResultIterator
@@ -174,15 +162,13 @@ class DibiResult extends DibiObject implements IDataSource
} }
/********************* fetching rows ****************d*g**/ /********************* fetching rows ****************d*g**/
/** /**
* Set fetched object class. This class should extend the DibiRow class. * Set fetched object class. This class should extend the DibiRow class.
* @param string * @param string
* @return DibiResult provides a fluent interface * @return self
*/ */
public function setRowClass($class) public function setRowClass($class)
{ {
@@ -191,7 +177,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Returns fetched object class name. * Returns fetched object class name.
* @return string * @return string
@@ -202,6 +187,17 @@ class DibiResult extends DibiObject implements IDataSource
} }
/**
* Set a factory to create fetched object instances. These should extend the DibiRow class.
* @param callback
* @return self
*/
public function setRowFactory($callback)
{
$this->rowFactory = $callback;
return $this;
}
/** /**
* Fetches the row at current position, process optional type conversion. * Fetches the row at current position, process optional type conversion.
@@ -216,14 +212,15 @@ class DibiResult extends DibiObject implements IDataSource
} }
$this->fetched = TRUE; $this->fetched = TRUE;
$this->normalize($row); $this->normalize($row);
if ($this->rowClass) { if ($this->rowFactory) {
return call_user_func($this->rowFactory, $row);
} elseif ($this->rowClass) {
$row = new $this->rowClass($row); $row = new $this->rowClass($row);
} }
return $row; return $row;
} }
/** /**
* Like fetch(), but returns only first field. * Like fetch(), but returns only first field.
* @return mixed value on success, FALSE if no next record * @return mixed value on success, FALSE if no next record
@@ -240,23 +237,26 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table. * Fetches all records from table.
* @param int offset * @param int offset
* @param int limit * @param int limit
* @return array of DibiRow * @return DibiRow[]
*/ */
final public function fetchAll($offset = NULL, $limit = NULL) final public function fetchAll($offset = NULL, $limit = NULL)
{ {
$limit = $limit === NULL ? -1 : (int) $limit; $limit = $limit === NULL ? -1 : (int) $limit;
$this->seek((int) $offset); $this->seek((int) $offset);
$row = $this->fetch(); $row = $this->fetch();
if (!$row) return array(); // empty result set if (!$row) {
return array(); // empty result set
}
$data = array(); $data = array();
do { do {
if ($limit === 0) break; if ($limit === 0) {
break;
}
$limit--; $limit--;
$data[] = $row; $data[] = $row;
} while ($row = $this->fetch()); } while ($row = $this->fetch());
@@ -265,7 +265,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table and returns associative tree. * Fetches all records from table and returns associative tree.
* Examples: * Examples:
@@ -285,7 +284,9 @@ class DibiResult extends DibiObject implements IDataSource
$this->seek(0); $this->seek(0);
$row = $this->fetch(); $row = $this->fetch();
if (!$row) return array(); // empty result set if (!$row) {
return array(); // empty result set
}
$data = NULL; $data = NULL;
$assoc = preg_split('#(\[\]|->|=|\|)#', $assoc, NULL, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); $assoc = preg_split('#(\[\]|->|=|\|)#', $assoc, NULL, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
@@ -344,7 +345,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* @deprecated * @deprecated
*/ */
@@ -352,7 +352,9 @@ class DibiResult extends DibiObject implements IDataSource
{ {
$this->seek(0); $this->seek(0);
$row = $this->fetch(); $row = $this->fetch();
if (!$row) return array(); // empty result set if (!$row) {
return array(); // empty result set
}
$data = NULL; $data = NULL;
$assoc = explode(',', $assoc); $assoc = explode(',', $assoc);
@@ -417,7 +419,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Fetches all records from table like $key => $value pairs. * Fetches all records from table like $key => $value pairs.
* @param string associative key * @param string associative key
@@ -429,7 +430,9 @@ class DibiResult extends DibiObject implements IDataSource
{ {
$this->seek(0); $this->seek(0);
$row = $this->fetch(); $row = $this->fetch();
if (!$row) return array(); // empty result set if (!$row) {
return array(); // empty result set
}
$data = array(); $data = array();
@@ -468,18 +471,16 @@ class DibiResult extends DibiObject implements IDataSource
} }
do { do {
$data[ $row[$key] ] = $row[$value]; $data[ (string) $row[$key] ] = $row[$value];
} while ($row = $this->fetch()); } while ($row = $this->fetch());
return $data; return $data;
} }
/********************* column types ****************d*g**/ /********************* column types ****************d*g**/
/** /**
* Autodetect column types. * Autodetect column types.
* @return void * @return void
@@ -495,7 +496,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Converts values to specified type and format. * Converts values to specified type and format.
* @param array * @param array
@@ -514,13 +514,13 @@ class DibiResult extends DibiObject implements IDataSource
$row[$key] = is_float($tmp = $value * 1) ? $value : $tmp; $row[$key] = is_float($tmp = $value * 1) ? $value : $tmp;
} elseif ($type === dibi::FLOAT) { } elseif ($type === dibi::FLOAT) {
$row[$key] = (string) ($tmp = (float) $value) === $value ? $tmp : $value; $row[$key] = str_replace(',', '.', ltrim((string) ($tmp = (float) $value), '0')) === ltrim(rtrim(rtrim($value, '0'), '.'), '0') ? $tmp : $value;
} elseif ($type === dibi::BOOL) { } elseif ($type === dibi::BOOL) {
$row[$key] = ((bool) $value) && $value !== 'f' && $value !== 'F'; $row[$key] = ((bool) $value) && $value !== 'f' && $value !== 'F';
} elseif ($type === dibi::DATE || $type === dibi::DATETIME) { } elseif ($type === dibi::DATE || $type === dibi::DATETIME) {
if ((int) $value === 0) { // '', NULL, FALSE, '0000-00-00', ... if ((int) $value === 0 && substr((string) $value, 0, 3) !== '00:') { // '', NULL, FALSE, '0000-00-00', ...
} elseif (empty($this->formats[$type])) { // return DateTime object (default) } elseif (empty($this->formats[$type])) { // return DateTime object (default)
$row[$key] = new DibiDateTime(is_numeric($value) ? date('Y-m-d H:i:s', $value) : $value); $row[$key] = new DibiDateTime(is_numeric($value) ? date('Y-m-d H:i:s', $value) : $value);
@@ -543,12 +543,11 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Define column type. * Define column type.
* @param string column * @param string column
* @param string type (use constant Dibi::*) * @param string type (use constant Dibi::*)
* @return DibiResult provides a fluent interface * @return self
*/ */
final public function setType($col, $type) final public function setType($col, $type)
{ {
@@ -557,7 +556,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Returns column type. * Returns column type.
* @return string * @return string
@@ -568,12 +566,11 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Sets data format. * Sets data format.
* @param string type (use constant Dibi::*) * @param string type (use constant Dibi::*)
* @param string format * @param string format
* @return DibiResult provides a fluent interface * @return self
*/ */
final public function setFormat($type, $format) final public function setFormat($type, $format)
{ {
@@ -582,7 +579,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* Returns data format. * Returns data format.
* @return string * @return string
@@ -593,11 +589,9 @@ class DibiResult extends DibiObject implements IDataSource
} }
/********************* meta info ****************d*g**/ /********************* meta info ****************d*g**/
/** /**
* Returns a meta information about the current result set. * Returns a meta information about the current result set.
* @return DibiResultInfo * @return DibiResultInfo
@@ -611,7 +605,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** /**
* @deprecated * @deprecated
*/ */
@@ -621,7 +614,6 @@ class DibiResult extends DibiObject implements IDataSource
} }
/** @deprecated */ /** @deprecated */
public function getColumnNames($fullNames = FALSE) public function getColumnNames($fullNames = FALSE)
{ {
@@ -630,43 +622,74 @@ class DibiResult extends DibiObject implements IDataSource
} }
/********************* misc tools ****************d*g**/ /********************* misc tools ****************d*g**/
/** /**
* Displays complete result set as HTML table for debug purposes. * Displays complete result set as HTML or text table for debug purposes.
* @return void * @return void
*/ */
final public function dump() final public function dump()
{ {
$i = 0; $i = 0;
$this->seek(0); $this->seek(0);
while ($row = $this->fetch()) { if (PHP_SAPI === 'cli') {
if ($i === 0) { $hasColors = (substr(getenv('TERM'), 0, 5) === 'xterm');
echo "\n<table class=\"dump\">\n<thead>\n\t<tr>\n\t\t<th>#row</th>\n"; $maxLen = 0;
while ($row = $this->fetch()) {
foreach ($row as $col => $foo) { if ($i === 0) {
echo "\t\t<th>" . htmlSpecialChars($col) . "</th>\n"; foreach ($row as $col => $foo) {
$len = mb_strlen($col);
$maxLen = max($len, $maxLen);
}
} }
echo "\t</tr>\n</thead>\n<tbody>\n"; if ($hasColors) {
echo "\033[1;37m#row: $i\033[0m\n";
} else {
echo "#row: $i\n";
}
foreach ($row as $col => $val) {
$spaces = $maxLen - mb_strlen($col) + 2;
echo "$col" . str_repeat(" ", $spaces) . "$val\n";
}
echo "\n";
$i++;
} }
echo "\t<tr>\n\t\t<th>", $i, "</th>\n"; if ($i === 0) {
foreach ($row as $col) { echo "empty result set\n";
//if (is_object($col)) $col = $col->__toString();
echo "\t\t<td>", htmlSpecialChars($col), "</td>\n";
} }
echo "\t</tr>\n"; echo "\n";
$i++;
}
if ($i === 0) {
echo '<p><em>empty result set</em></p>';
} else { } else {
echo "</tbody>\n</table>\n"; while ($row = $this->fetch()) {
if ($i === 0) {
echo "\n<table class=\"dump\">\n<thead>\n\t<tr>\n\t\t<th>#row</th>\n";
foreach ($row as $col => $foo) {
echo "\t\t<th>" . htmlSpecialChars($col) . "</th>\n";
}
echo "\t</tr>\n</thead>\n<tbody>\n";
}
echo "\t<tr>\n\t\t<th>", $i, "</th>\n";
foreach ($row as $col) {
//if (is_object($col)) $col = $col->__toString();
echo "\t\t<td>", htmlSpecialChars($col), "</td>\n";
}
echo "\t</tr>\n";
$i++;
}
if ($i === 0) {
echo '<p><em>empty result set</em></p>';
} else {
echo "</tbody>\n</table>\n";
}
} }
} }

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* External result set iterator. * External result set iterator.
* *
@@ -47,7 +42,6 @@ class DibiResultIterator implements Iterator, Countable
} }
/** /**
* Rewinds the iterator to the first element. * Rewinds the iterator to the first element.
* @return void * @return void
@@ -60,7 +54,6 @@ class DibiResultIterator implements Iterator, Countable
} }
/** /**
* Returns the key of the current element. * Returns the key of the current element.
* @return mixed * @return mixed
@@ -71,7 +64,6 @@ class DibiResultIterator implements Iterator, Countable
} }
/** /**
* Returns the current element. * Returns the current element.
* @return mixed * @return mixed
@@ -82,7 +74,6 @@ class DibiResultIterator implements Iterator, Countable
} }
/** /**
* Moves forward to next element. * Moves forward to next element.
* @return void * @return void
@@ -94,7 +85,6 @@ class DibiResultIterator implements Iterator, Countable
} }
/** /**
* Checks if there is a current element after calls to rewind() or next(). * Checks if there is a current element after calls to rewind() or next().
* @return bool * @return bool
@@ -105,7 +95,6 @@ class DibiResultIterator implements Iterator, Countable
} }
/** /**
* Required by the Countable interface. * Required by the Countable interface.
* @return int * @return int

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* Result set single row. * Result set single row.
* *
@@ -22,18 +17,18 @@ class DibiRow implements ArrayAccess, IteratorAggregate, Countable
public function __construct($arr) public function __construct($arr)
{ {
foreach ($arr as $k => $v) $this->$k = $v; foreach ($arr as $k => $v) {
$this->$k = $v;
}
} }
public function toArray() public function toArray()
{ {
return (array) $this; return (array) $this;
} }
/** /**
* Converts value to DateTime object. * Converts value to DateTime object.
* @param string key * @param string key
@@ -44,7 +39,7 @@ class DibiRow implements ArrayAccess, IteratorAggregate, Countable
{ {
$time = $this[$key]; $time = $this[$key];
if (!$time instanceof DibiDateTime) { if (!$time instanceof DibiDateTime) {
if ((int) $time === 0) { // '', NULL, FALSE, '0000-00-00', ... if ((int) $time === 0 && substr((string) $time, 0, 3) !== '00:') { // '', NULL, FALSE, '0000-00-00', ...
return NULL; return NULL;
} }
$time = new DibiDateTime(is_numeric($time) ? date('Y-m-d H:i:s', $time) : $time); $time = new DibiDateTime(is_numeric($time) ? date('Y-m-d H:i:s', $time) : $time);
@@ -53,7 +48,6 @@ class DibiRow implements ArrayAccess, IteratorAggregate, Countable
} }
/** /**
* Converts value to UNIX timestamp. * Converts value to UNIX timestamp.
* @param string key * @param string key
@@ -62,14 +56,10 @@ class DibiRow implements ArrayAccess, IteratorAggregate, Countable
public function asTimestamp($key) public function asTimestamp($key)
{ {
trigger_error(__METHOD__ . '() is deprecated.', E_USER_WARNING); trigger_error(__METHOD__ . '() is deprecated.', E_USER_WARNING);
$time = $this[$key]; return $this->asDateTime($key, 'U');
return (int) $time === 0 // '', NULL, FALSE, '0000-00-00', ...
? NULL
: (is_numeric($time) ? (int) $time : strtotime($time));
} }
/** /**
* Converts value to boolean. * Converts value to boolean.
* @param string key * @param string key
@@ -82,7 +72,6 @@ class DibiRow implements ArrayAccess, IteratorAggregate, Countable
} }
/** @deprecated */ /** @deprecated */
public function asDate($key, $format = NULL) public function asDate($key, $format = NULL)
{ {
@@ -95,46 +84,39 @@ class DibiRow implements ArrayAccess, IteratorAggregate, Countable
} }
/********************* interfaces ArrayAccess, Countable & IteratorAggregate ****************d*g**/ /********************* interfaces ArrayAccess, Countable & IteratorAggregate ****************d*g**/
final public function count() final public function count()
{ {
return count((array) $this); return count((array) $this);
} }
final public function getIterator() final public function getIterator()
{ {
return new ArrayIterator($this); return new ArrayIterator($this);
} }
final public function offsetSet($nm, $val) final public function offsetSet($nm, $val)
{ {
$this->$nm = $val; $this->$nm = $val;
} }
final public function offsetGet($nm) final public function offsetGet($nm)
{ {
return $this->$nm; return $this->$nm;
} }
final public function offsetExists($nm) final public function offsetExists($nm)
{ {
return isset($this->$nm); return isset($this->$nm);
} }
final public function offsetUnset($nm) final public function offsetUnset($nm)
{ {
unset($this->$nm); unset($this->$nm);

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* dibi SQL translator. * dibi SQL translator.
* *
@@ -53,14 +48,12 @@ final class DibiTranslator extends DibiObject
private $identifiers; private $identifiers;
public function __construct(DibiConnection $connection) public function __construct(DibiConnection $connection)
{ {
$this->connection = $connection; $this->connection = $connection;
} }
/** /**
* Generates SQL. * Generates SQL.
* @param array * @param array
@@ -94,8 +87,7 @@ final class DibiTranslator extends DibiObject
// iterate // iterate
$sql = array(); $sql = array();
while ($cursor < count($this->args)) while ($cursor < count($this->args)) {
{
$arg = $this->args[$cursor]; $arg = $this->args[$cursor];
$cursor++; $cursor++;
@@ -126,7 +118,9 @@ final class DibiTranslator extends DibiObject
array($this, 'cb'), array($this, 'cb'),
substr($arg, $toSkip) substr($arg, $toSkip)
); );
if (preg_last_error()) throw new DibiPcreException; if (preg_last_error()) {
throw new DibiPcreException;
}
} }
continue; continue;
} }
@@ -148,7 +142,9 @@ final class DibiTranslator extends DibiObject
$commandIns = $commandIns === 'INSERT' || $commandIns === 'REPLAC'; $commandIns = $commandIns === 'INSERT' || $commandIns === 'REPLAC';
$sql[] = $this->formatValue($arg, $commandIns ? 'v' : 'a'); $sql[] = $this->formatValue($arg, $commandIns ? 'v' : 'a');
} else { } else {
if ($lastArr === $cursor - 1) $sql[] = ','; if ($lastArr === $cursor - 1) {
$sql[] = ',';
}
$sql[] = $this->formatValue($arg, $commandIns ? 'l' : 'a'); $sql[] = $this->formatValue($arg, $commandIns ? 'l' : 'a');
} }
$lastArr = $cursor; $lastArr = $cursor;
@@ -161,7 +157,9 @@ final class DibiTranslator extends DibiObject
} // while } // while
if ($comment) $sql[] = "*/"; if ($comment) {
$sql[] = "*/";
}
$sql = implode(' ', $sql); $sql = implode(' ', $sql);
@@ -178,7 +176,6 @@ final class DibiTranslator extends DibiObject
} }
/** /**
* Apply modifier to single value. * Apply modifier to single value.
* @param mixed * @param mixed
@@ -199,131 +196,131 @@ final class DibiTranslator extends DibiObject
if (is_array($value)) { if (is_array($value)) {
$vx = $kx = array(); $vx = $kx = array();
switch ($modifier) { switch ($modifier) {
case 'and': case 'and':
case 'or': // key=val AND key IS NULL AND ... case 'or': // key=val AND key IS NULL AND ...
if (empty($value)) { if (empty($value)) {
return '1=1'; return '1=1';
} }
foreach ($value as $k => $v) { foreach ($value as $k => $v) {
if (is_string($k)) { if (is_string($k)) {
$pair = explode('%', $k, 2); // split into identifier & modifier $pair = explode('%', $k, 2); // split into identifier & modifier
$k = $this->identifiers->{$pair[0]} . ' '; $k = $this->identifiers->{$pair[0]} . ' ';
if (!isset($pair[1])) { if (!isset($pair[1])) {
$v = $this->formatValue($v, FALSE); $v = $this->formatValue($v, FALSE);
$vx[] = $k . ($v === 'NULL' ? 'IS ' : '= ') . $v; $vx[] = $k . ($v === 'NULL' ? 'IS ' : '= ') . $v;
} elseif ($pair[1] === 'ex') { // TODO: this will be removed } elseif ($pair[1] === 'ex') { // TODO: this will be removed
$vx[] = $k . $this->formatValue($v, 'ex'); $vx[] = $k . $this->formatValue($v, 'ex');
} else {
$v = $this->formatValue($v, $pair[1]);
if ($pair[1] === 'l' || $pair[1] === 'in') {
$op = 'IN ';
} elseif (strpos($pair[1], 'like') !== FALSE) {
$op = 'LIKE ';
} elseif ($v === 'NULL') {
$op = 'IS ';
} else { } else {
$op = '= '; $v = $this->formatValue($v, $pair[1]);
if ($pair[1] === 'l' || $pair[1] === 'in') {
$op = 'IN ';
} elseif (strpos($pair[1], 'like') !== FALSE) {
$op = 'LIKE ';
} elseif ($v === 'NULL') {
$op = 'IS ';
} else {
$op = '= ';
}
$vx[] = $k . $op . $v;
} }
$vx[] = $k . $op . $v;
} else {
$vx[] = $this->formatValue($v, 'ex');
} }
} else {
$vx[] = $this->formatValue($v, 'ex');
} }
} return '(' . implode(') ' . strtoupper($modifier) . ' (', $vx) . ')';
return '(' . implode(') ' . strtoupper($modifier) . ' (', $vx) . ')';
case 'n': // key, key, ... identifier names case 'n': // key, key, ... identifier names
foreach ($value as $k => $v) { foreach ($value as $k => $v) {
if (is_string($k)) { if (is_string($k)) {
$vx[] = $this->identifiers->$k . (empty($v) ? '' : ' AS ' . $this->identifiers->$v); $vx[] = $this->identifiers->$k . (empty($v) ? '' : ' AS ' . $this->identifiers->$v);
} else { } else {
$pair = explode('%', $v, 2); // split into identifier & modifier $pair = explode('%', $v, 2); // split into identifier & modifier
$vx[] = $this->identifiers->{$pair[0]}; $vx[] = $this->identifiers->{$pair[0]};
}
} }
} return implode(', ', $vx);
return implode(', ', $vx);
case 'a': // key=val, key=val, ... case 'a': // key=val, key=val, ...
foreach ($value as $k => $v) { foreach ($value as $k => $v) {
$pair = explode('%', $k, 2); // split into identifier & modifier $pair = explode('%', $k, 2); // split into identifier & modifier
$vx[] = $this->identifiers->{$pair[0]} . '=' $vx[] = $this->identifiers->{$pair[0]} . '='
. $this->formatValue($v, isset($pair[1]) ? $pair[1] : (is_array($v) ? 'ex' : FALSE)); . $this->formatValue($v, isset($pair[1]) ? $pair[1] : (is_array($v) ? 'ex' : FALSE));
} }
return implode(', ', $vx); return implode(', ', $vx);
case 'in':// replaces scalar %in modifier! case 'in':// replaces scalar %in modifier!
case 'l': // (val, val, ...) case 'l': // (val, val, ...)
foreach ($value as $k => $v) { foreach ($value as $k => $v) {
$pair = explode('%', $k, 2); // split into identifier & modifier $pair = explode('%', $k, 2); // split into identifier & modifier
$vx[] = $this->formatValue($v, isset($pair[1]) ? $pair[1] : (is_array($v) ? 'ex' : FALSE)); $vx[] = $this->formatValue($v, isset($pair[1]) ? $pair[1] : (is_array($v) ? 'ex' : FALSE));
} }
return '(' . (($vx || $modifier === 'l') ? implode(', ', $vx) : 'NULL') . ')'; return '(' . (($vx || $modifier === 'l') ? implode(', ', $vx) : 'NULL') . ')';
case 'v': // (key, key, ...) VALUES (val, val, ...) case 'v': // (key, key, ...) VALUES (val, val, ...)
foreach ($value as $k => $v) { foreach ($value as $k => $v) {
$pair = explode('%', $k, 2); // split into identifier & modifier $pair = explode('%', $k, 2); // split into identifier & modifier
$kx[] = $this->identifiers->{$pair[0]}; $kx[] = $this->identifiers->{$pair[0]};
$vx[] = $this->formatValue($v, isset($pair[1]) ? $pair[1] : (is_array($v) ? 'ex' : FALSE)); $vx[] = $this->formatValue($v, isset($pair[1]) ? $pair[1] : (is_array($v) ? 'ex' : FALSE));
} }
return '(' . implode(', ', $kx) . ') VALUES (' . implode(', ', $vx) . ')'; return '(' . implode(', ', $kx) . ') VALUES (' . implode(', ', $vx) . ')';
case 'm': // (key, key, ...) VALUES (val, val, ...), (val, val, ...), ... case 'm': // (key, key, ...) VALUES (val, val, ...), (val, val, ...), ...
foreach ($value as $k => $v) { foreach ($value as $k => $v) {
if (is_array($v)) { if (is_array($v)) {
if (isset($proto)) { if (isset($proto)) {
if ($proto !== array_keys($v)) { if ($proto !== array_keys($v)) {
$this->hasError = TRUE; $this->hasError = TRUE;
return '**Multi-insert array "' . $k . '" is different.**'; return '**Multi-insert array "' . $k . '" is different.**';
}
} else {
$proto = array_keys($v);
} }
} else { } else {
$proto = array_keys($v); $this->hasError = TRUE;
return '**Unexpected type ' . gettype($v) . '**';
}
$pair = explode('%', $k, 2); // split into identifier & modifier
$kx[] = $this->identifiers->{$pair[0]};
foreach ($v as $k2 => $v2) {
$vx[$k2][] = $this->formatValue($v2, isset($pair[1]) ? $pair[1] : (is_array($v2) ? 'ex' : FALSE));
} }
} else {
$this->hasError = TRUE;
return '**Unexpected type ' . gettype($v) . '**';
} }
foreach ($vx as $k => $v) {
$pair = explode('%', $k, 2); // split into identifier & modifier $vx[$k] = '(' . implode(', ', $v) . ')';
$kx[] = $this->identifiers->{$pair[0]};
foreach ($v as $k2 => $v2) {
$vx[$k2][] = $this->formatValue($v2, isset($pair[1]) ? $pair[1] : (is_array($v2) ? 'ex' : FALSE));
} }
} return '(' . implode(', ', $kx) . ') VALUES ' . implode(', ', $vx);
foreach ($vx as $k => $v) {
$vx[$k] = '(' . implode(', ', $v) . ')';
}
return '(' . implode(', ', $kx) . ') VALUES ' . implode(', ', $vx);
case 'by': // key ASC, key DESC case 'by': // key ASC, key DESC
foreach ($value as $k => $v) { foreach ($value as $k => $v) {
if (is_array($v)) { if (is_array($v)) {
$vx[] = $this->formatValue($v, 'ex'); $vx[] = $this->formatValue($v, 'ex');
} elseif (is_string($k)) { } elseif (is_string($k)) {
$v = (is_string($v) && strncasecmp($v, 'd', 1)) || $v > 0 ? 'ASC' : 'DESC'; $v = (is_string($v) && strncasecmp($v, 'd', 1)) || $v > 0 ? 'ASC' : 'DESC';
$vx[] = $this->identifiers->$k . ' ' . $v; $vx[] = $this->identifiers->$k . ' ' . $v;
} else { } else {
$vx[] = $this->identifiers->$v; $vx[] = $this->identifiers->$v;
}
} }
} return implode(', ', $vx);
return implode(', ', $vx);
case 'ex': case 'ex':
case 'sql': case 'sql':
$translator = new self($this->connection); $translator = new self($this->connection);
return $translator->translate($value); return $translator->translate($value);
default: // value, value, value - all with the same modifier default: // value, value, value - all with the same modifier
foreach ($value as $v) { foreach ($value as $v) {
$vx[] = $this->formatValue($v, $modifier); $vx[] = $this->formatValue($v, $modifier);
} }
return implode(', ', $vx); return implode(', ', $vx);
} }
} }
@@ -336,94 +333,98 @@ final class DibiTranslator extends DibiObject
} }
switch ($modifier) { switch ($modifier) {
case 's': // string case 's': // string
case 'bin':// binary case 'bin':// binary
case 'b': // boolean case 'b': // boolean
return $value === NULL ? 'NULL' : $this->driver->escape($value, $modifier); return $value === NULL ? 'NULL' : $this->driver->escape($value, $modifier);
case 'sN': // string or NULL case 'sN': // string or NULL
case 'sn': case 'sn':
return $value == '' ? 'NULL' : $this->driver->escape($value, dibi::TEXT); // notice two equal signs return $value == '' ? 'NULL' : $this->driver->escape($value, dibi::TEXT); // notice two equal signs
case 'iN': // signed int or NULL case 'iN': // signed int or NULL
case 'in': // deprecated case 'in': // deprecated
if ($value == '') $value = NULL; if ($value == '') {
// intentionally break omitted $value = NULL;
case 'i': // signed int
case 'u': // unsigned int, ignored
// support for long numbers - keep them unchanged
if (is_string($value) && preg_match('#[+-]?\d++(e\d+)?\z#A', $value)) {
return $value;
} else {
return $value === NULL ? 'NULL' : (string) (int) ($value + 0);
}
case 'f': // float
// support for extreme numbers - keep them unchanged
if (is_string($value) && is_numeric($value) && strpos($value, 'x') === FALSE) {
return $value; // something like -9E-005 is accepted by SQL, HEX values are not
} else {
return $value === NULL ? 'NULL' : rtrim(rtrim(number_format($value + 0, 10, '.', ''), '0'), '.');
}
case 'd': // date
case 't': // datetime
if ($value === NULL) {
return 'NULL';
} else {
if (is_numeric($value)) {
$value = (int) $value; // timestamp
} elseif (is_string($value)) {
$value = new DateTime($value);
} }
return $this->driver->escape($value, $modifier); // intentionally break omitted
}
case 'by': case 'i': // signed int
case 'n': // identifier name case 'u': // unsigned int, ignored
return $this->identifiers->$value; // support for long numbers - keep them unchanged
if (is_string($value) && preg_match('#[+-]?\d++(e\d+)?\z#A', $value)) {
return $value;
} else {
return $value === NULL ? 'NULL' : (string) (int) ($value + 0);
}
case 'ex': case 'f': // float
case 'sql': // preserve as dibi-SQL (TODO: leave only %ex) // support for extreme numbers - keep them unchanged
$value = (string) $value; if (is_string($value) && is_numeric($value) && strpos($value, 'x') === FALSE) {
// speed-up - is regexp required? return $value; // something like -9E-005 is accepted by SQL, HEX values are not
$toSkip = strcspn($value, '`[\'":'); } else {
if (strlen($value) !== $toSkip) { return $value === NULL ? 'NULL' : rtrim(rtrim(number_format($value + 0, 10, '.', ''), '0'), '.');
$value = substr($value, 0, $toSkip) }
. preg_replace_callback(
'/(?=[`[\'":])(?:`(.+?)`|\[(.+?)\]|(\')((?:\'\'|[^\'])*)\'|(")((?:""|[^"])*)"|(\'|")|:(\S*?:)([a-zA-Z0-9._]?))/s',
array($this, 'cb'),
substr($value, $toSkip)
);
if (preg_last_error()) throw new DibiPcreException;
}
return $value;
case 'SQL': // preserve as real SQL (TODO: rename to %sql) case 'd': // date
return (string) $value; case 't': // datetime
if ($value === NULL) {
return 'NULL';
} else {
if (is_numeric($value)) {
$value = (int) $value; // timestamp
case 'like~': // LIKE string% } elseif (is_string($value)) {
return $this->driver->escapeLike($value, 1); $value = new DateTime($value);
}
return $this->driver->escape($value, $modifier);
}
case '~like': // LIKE %string case 'by':
return $this->driver->escapeLike($value, -1); case 'n': // identifier name
return $this->identifiers->$value;
case '~like~': // LIKE %string% case 'ex':
return $this->driver->escapeLike($value, 0); case 'sql': // preserve as dibi-SQL (TODO: leave only %ex)
$value = (string) $value;
// speed-up - is regexp required?
$toSkip = strcspn($value, '`[\'":');
if (strlen($value) !== $toSkip) {
$value = substr($value, 0, $toSkip)
. preg_replace_callback(
'/(?=[`[\'":])(?:`(.+?)`|\[(.+?)\]|(\')((?:\'\'|[^\'])*)\'|(")((?:""|[^"])*)"|(\'|")|:(\S*?:)([a-zA-Z0-9._]?))/s',
array($this, 'cb'),
substr($value, $toSkip)
);
if (preg_last_error()) {
throw new DibiPcreException;
}
}
return $value;
case 'and': case 'SQL': // preserve as real SQL (TODO: rename to %sql)
case 'or': return (string) $value;
case 'a':
case 'l':
case 'v':
$this->hasError = TRUE;
return '**Unexpected type ' . gettype($value) . '**';
default: case 'like~': // LIKE string%
$this->hasError = TRUE; return $this->driver->escapeLike($value, 1);
return "**Unknown or invalid modifier %$modifier**";
case '~like': // LIKE %string
return $this->driver->escapeLike($value, -1);
case '~like~': // LIKE %string%
return $this->driver->escapeLike($value, 0);
case 'and':
case 'or':
case 'a':
case 'l':
case 'v':
$this->hasError = TRUE;
return '**Unexpected type ' . gettype($value) . '**';
default:
$this->hasError = TRUE;
return "**Unknown or invalid modifier %$modifier**";
} }
} }
@@ -457,7 +458,6 @@ final class DibiTranslator extends DibiObject
} }
/** /**
* PREG callback from translate() or formatValue(). * PREG callback from translate() or formatValue().
* @param array * @param array
@@ -536,12 +536,16 @@ final class DibiTranslator extends DibiObject
return ''; return '';
} elseif ($mod === 'lmt') { // apply limit } elseif ($mod === 'lmt') { // apply limit
if ($this->args[$cursor] !== NULL) $this->limit = (int) $this->args[$cursor]; if ($this->args[$cursor] !== NULL) {
$this->limit = (int) $this->args[$cursor];
}
$cursor++; $cursor++;
return ''; return '';
} elseif ($mod === 'ofs') { // apply offset } elseif ($mod === 'ofs') { // apply offset
if ($this->args[$cursor] !== NULL) $this->offset = (int) $this->args[$cursor]; if ($this->args[$cursor] !== NULL) {
$this->offset = (int) $this->args[$cursor];
}
$cursor++; $cursor++;
return ''; return '';
@@ -551,21 +555,23 @@ final class DibiTranslator extends DibiObject
} }
} }
if ($this->comment) return '...'; if ($this->comment) {
return '...';
}
if ($matches[1]) // SQL identifiers: `ident` if ($matches[1]) { // SQL identifiers: `ident`
return $this->identifiers->{$matches[1]}; return $this->identifiers->{$matches[1]};
if ($matches[2]) // SQL identifiers: [ident] } elseif ($matches[2]) { // SQL identifiers: [ident]
return $this->identifiers->{$matches[2]}; return $this->identifiers->{$matches[2]};
if ($matches[3]) // SQL strings: '...' } elseif ($matches[3]) { // SQL strings: '...'
return $this->driver->escape( str_replace("''", "'", $matches[4]), dibi::TEXT); return $this->driver->escape( str_replace("''", "'", $matches[4]), dibi::TEXT);
if ($matches[5]) // SQL strings: "..." } elseif ($matches[5]) { // SQL strings: "..."
return $this->driver->escape( str_replace('""', '"', $matches[6]), dibi::TEXT); return $this->driver->escape( str_replace('""', '"', $matches[6]), dibi::TEXT);
if ($matches[7]) { // string quote } elseif ($matches[7]) { // string quote
$this->hasError = TRUE; $this->hasError = TRUE;
return '**Alone quote**'; return '**Alone quote**';
} }
@@ -580,7 +586,6 @@ final class DibiTranslator extends DibiObject
} }
/** /**
* Apply substitutions to indentifier and delimites it. * Apply substitutions to indentifier and delimites it.
* @param string indentifier * @param string indentifier
@@ -592,7 +597,9 @@ final class DibiTranslator extends DibiObject
$value = $this->connection->substitute($value); $value = $this->connection->substitute($value);
$parts = explode('.', $value); $parts = explode('.', $value);
foreach ($parts as & $v) { foreach ($parts as & $v) {
if ($v !== '*') $v = $this->driver->escape($v, dibi::IDENTIFIER); if ($v !== '*') {
$v = $this->driver->escape($v, dibi::IDENTIFIER);
}
} }
return implode('.', $parts); return implode('.', $parts);
} }

View File

@@ -2,15 +2,10 @@
/** /**
* This file is part of the "dibi" - smart database abstraction layer. * This file is part of the "dibi" - smart database abstraction layer.
*
* Copyright (c) 2005 David Grudl (http://davidgrudl.com) * Copyright (c) 2005 David Grudl (http://davidgrudl.com)
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/ */
/** /**
* Provides an interface between a dataset and data-aware components. * Provides an interface between a dataset and data-aware components.
* @package dibi * @package dibi
@@ -22,7 +17,6 @@ interface IDataSource extends Countable, IteratorAggregate
} }
/** /**
* dibi driver interface. * dibi driver interface.
* @package dibi * @package dibi
@@ -36,7 +30,7 @@ interface IDibiDriver
* @return void * @return void
* @throws DibiException * @throws DibiException
*/ */
function connect(array &$config); function connect(array & $config);
/** /**
* Disconnects from a database. * Disconnects from a database.
@@ -120,19 +114,13 @@ interface IDibiDriver
/** /**
* Injects LIMIT/OFFSET to the SQL query. * Injects LIMIT/OFFSET to the SQL query.
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void * @return void
*/ */
function applyLimit(&$sql, $limit, $offset); function applyLimit(& $sql, $limit, $offset);
} }
/** /**
* dibi result set driver interface. * dibi result set driver interface.
* @package dibi * @package dibi
@@ -193,9 +181,6 @@ interface IDibiResultDriver
} }
/** /**
* dibi driver reflection. * dibi driver reflection.
* *

View File

@@ -23,7 +23,6 @@ render(){$obLevel=ob_get_level();$panels=array();foreach($this->panels
as$id=>$panel){try{$panels[]=array('id'=>preg_replace('#[^a-z0-9]+#i','-',$id),'tab'=>$tab=(string)$panel->getTab(),'panel'=>$tab?(string)$panel->getPanel():NULL);}catch(Exception$e){$panels[]=array('id'=>"error-$id",'tab'=>"Error: $id",'panel'=>nl2br(htmlSpecialChars((string)$e)));while(ob_get_level()>$obLevel){ob_end_clean();}}}?> as$id=>$panel){try{$panels[]=array('id'=>preg_replace('#[^a-z0-9]+#i','-',$id),'tab'=>$tab=(string)$panel->getTab(),'panel'=>$tab?(string)$panel->getPanel():NULL);}catch(Exception$e){$panels[]=array('id'=>"error-$id",'tab'=>"Error: $id",'panel'=>nl2br(htmlSpecialChars((string)$e)));while(ob_get_level()>$obLevel){ob_end_clean();}}}?>
<!-- Nette Debug Bar --> <!-- Nette Debug Bar -->
<?php ob_start()?> <?php ob_start()?>
@@ -130,7 +129,6 @@ htmlspecialchars('; caused by '.get_class($ex).' '.$ex->getMessage().($ex->getCo
</head> </head>
<body> <body>
<div id="netteBluescreen"> <div id="netteBluescreen">
<a id="netteBluescreenIcon" href="#" rel="next"><abbr>&#x25bc;</abbr></a <a id="netteBluescreenIcon" href="#" rel="next"><abbr>&#x25bc;</abbr></a
@@ -146,7 +144,6 @@ urlencode($title.' '.preg_replace('#\'.*\'|".*"#Us','',$exception->getMessage())
</div> </div>
<?php $ex=$exception;$level=0;?> <?php $ex=$exception;$level=0;?>
<?php do{?> <?php do{?>
@@ -165,7 +162,6 @@ htmlspecialchars($ex->getMessage())?></b></p>
<?php endif?> <?php endif?>
<?php foreach($panels <?php foreach($panels
as$panel):?> as$panel):?>
<?php $panel=call_user_func($panel,$ex);if(empty($panel['tab'])||empty($panel['panel']))continue;?> <?php $panel=call_user_func($panel,$ex);if(empty($panel['tab'])||empty($panel['panel']))continue;?>
@@ -180,7 +176,6 @@ htmlSpecialChars($panel['tab'])?> <abbr>&#x25bc;</abbr></a></h2>
<?php endforeach?> <?php endforeach?>
<?php $stack=$ex->getTrace();$expanded=NULL?> <?php $stack=$ex->getTrace();$expanded=NULL?>
<?php if(strpos($ex->getFile(),$expandPath)===0){foreach($stack <?php if(strpos($ex->getFile(),$expandPath)===0){foreach($stack
as$key=>$row){if(isset($row['file'])&&strpos($row['file'],$expandPath)!==0){$expanded=$key;break;}}}?> as$key=>$row){if(isset($row['file'])&&strpos($row['file'],$expandPath)!==0){$expanded=$key;break;}}}?>
@@ -196,7 +191,6 @@ self::highlightFile($ex->getFile(),$ex->getLine(),15,isset($ex->context)?$ex->co
</div></div> </div></div>
<?php if(isset($stack[0]['class'])&&$stack[0]['class']==='NDebugger'&&($stack[0]['function']==='_shutdownHandler'||$stack[0]['function']==='_errorHandler'))unset($stack[0])?> <?php if(isset($stack[0]['class'])&&$stack[0]['class']==='NDebugger'&&($stack[0]['function']==='_shutdownHandler'||$stack[0]['function']==='_errorHandler'))unset($stack[0])?>
<?php if($stack):?> <?php if($stack):?>
<div class="panel"> <div class="panel">
@@ -251,7 +245,6 @@ self::highlightFile($row['file'],$row['line'])?></div>
<?php endif?> <?php endif?>
<?php if(isset($ex->context)&&is_array($ex->context)):?> <?php if(isset($ex->context)&&is_array($ex->context)):?>
<div class="panel"> <div class="panel">
<h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">Variables <abbr>&#x25ba;</abbr></a></h2> <h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">Variables <abbr>&#x25ba;</abbr></a></h2>
@@ -272,7 +265,6 @@ as$k=>$v){echo'<tr><th>$',htmlspecialchars($k),'</th><td>',NDebugHelpers::clicka
<?php while(--$level)echo'</div></div>'?> <?php while(--$level)echo'</div></div>'?>
<?php $bottomPanels=array()?> <?php $bottomPanels=array()?>
<?php foreach($panels <?php foreach($panels
as$panel):?> as$panel):?>
@@ -288,7 +280,6 @@ htmlSpecialChars($panel['tab'])?> <abbr>&#x25ba;</abbr></a></h2>
<?php endforeach?> <?php endforeach?>
<div class="panel"> <div class="panel">
<h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">Environment <abbr>&#x25ba;</abbr></a></h2> <h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">Environment <abbr>&#x25ba;</abbr></a></h2>
@@ -336,7 +327,6 @@ as$k=>$v)echo'<tr><th>',htmlspecialchars($k),'</th><td>',NDebugHelpers::clickabl
</div></div> </div></div>
<div class="panel"> <div class="panel">
<h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">HTTP request <abbr>&#x25ba;</abbr></a></h2> <h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">HTTP request <abbr>&#x25ba;</abbr></a></h2>
@@ -371,7 +361,6 @@ foreach($GLOBALS[$name]as$k=>$v)echo'<tr><th>',htmlspecialchars($k),'</th><td>',
</div></div> </div></div>
<div class="panel"> <div class="panel">
<h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">HTTP response <abbr>&#x25ba;</abbr></a></h2> <h2><a href="#" rel="netteBsPnl<?php echo++$counter?>">HTTP response <abbr>&#x25ba;</abbr></a></h2>
@@ -388,7 +377,6 @@ htmlspecialchars($s),'<br>';?></pre>
</div></div> </div></div>
<?php foreach($bottomPanels <?php foreach($bottomPanels
as$panel):?> as$panel):?>
<div class="panel"> <div class="panel">
@@ -401,7 +389,6 @@ htmlSpecialChars($panel['tab'])?> <abbr>&#x25bc;</abbr></a></h2>
<?php endforeach?> <?php endforeach?>
<ul> <ul>
<li>Report generated at <?php echo@date('Y/m/d H:i:s',NDebugger::$time)?></li> <li>Report generated at <?php echo@date('Y/m/d H:i:s',NDebugger::$time)?></li>
<?php if(preg_match('#^https?://#',NDebugger::$source)):?> <?php if(preg_match('#^https?://#',NDebugger::$source)):?>

View File

@@ -18,7 +18,6 @@ project or top-level domain, and choose a name that stands on its own merits.
If your stuff is good, it will not take long to establish a reputation for yourselves. If your stuff is good, it will not take long to establish a reputation for yourselves.
New BSD License New BSD License
--------------- ---------------
@@ -51,7 +50,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
GNU General Public License GNU General Public License
-------------------------- --------------------------

View File

@@ -4,16 +4,16 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
// connects to SQlite using dibi class // connects to SQlite using dibi class
echo '<p>Connecting to Sqlite: '; echo '<p>Connecting to Sqlite: ';
try { try {
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
echo 'OK'; echo 'OK';
@@ -23,14 +23,12 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to SQlite using DibiConnection object // connects to SQlite using DibiConnection object
echo '<p>Connecting to Sqlite: '; echo '<p>Connecting to Sqlite: ';
try { try {
$connection = new DibiConnection(array( $connection = new DibiConnection(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
echo 'OK'; echo 'OK';
@@ -40,8 +38,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to MySQL using DSN // connects to MySQL using DSN
echo '<p>Connecting to MySQL: '; echo '<p>Connecting to MySQL: ';
try { try {
@@ -54,8 +50,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to MySQLi using array // connects to MySQLi using array
echo '<p>Connecting to MySQLi: '; echo '<p>Connecting to MySQLi: ';
try { try {
@@ -78,8 +72,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to ODBC // connects to ODBC
echo '<p>Connecting to ODBC: '; echo '<p>Connecting to ODBC: ';
try { try {
@@ -97,8 +89,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to PostgreSql // connects to PostgreSql
echo '<p>Connecting to PostgreSql: '; echo '<p>Connecting to PostgreSql: ';
try { try {
@@ -115,8 +105,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to PDO // connects to PDO
echo '<p>Connecting to Sqlite via PDO: '; echo '<p>Connecting to Sqlite via PDO: ';
try { try {
@@ -132,7 +120,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to MS SQL // connects to MS SQL
echo '<p>Connecting to MS SQL: '; echo '<p>Connecting to MS SQL: ';
try { try {
@@ -150,7 +137,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to MS SQL 2005 // connects to MS SQL 2005
echo '<p>Connecting to MS SQL 2005: '; echo '<p>Connecting to MS SQL 2005: ';
try { try {
@@ -169,7 +155,6 @@ try {
echo "</p>\n"; echo "</p>\n";
// connects to Oracle // connects to Oracle
echo '<p>Connecting to Oracle: '; echo '<p>Connecting to Oracle: ';
try { try {

BIN
examples/data/arrow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -2,7 +2,7 @@ body {
font: 15px/1.5 Tahoma, Verdana, Myriad Web, Syntax, sans-serif; font: 15px/1.5 Tahoma, Verdana, Myriad Web, Syntax, sans-serif;
color: #333; color: #333;
background: #fff url('dibi-powered.gif') no-repeat 99% 1em; background: #fff url('dibi-powered.gif') no-repeat 99% 1em;
margin: 1.6em; margin: 1.6em;
padding: 0; padding: 0;
} }

View File

@@ -4,17 +4,16 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
// retrieve database reflection // retrieve database reflection
$database = dibi::getDatabaseInfo(); $database = dibi::getDatabaseInfo();
@@ -26,7 +25,6 @@ foreach ($database->getTables() as $table) {
echo "</ul>\n"; echo "</ul>\n";
// table reflection // table reflection
$table = $database->getTable('products'); $table = $database->getTable('products');
@@ -40,7 +38,6 @@ foreach ($table->getColumns() as $column) {
echo "</ul>\n"; echo "</ul>\n";
echo "Indexes"; echo "Indexes";
echo "<ul>\n"; echo "<ul>\n";
foreach ($table->getIndexes() as $index) { foreach ($table->getIndexes() as $index) {

View File

@@ -4,17 +4,16 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
$res = dibi::query(' $res = dibi::query('
SELECT * FROM products SELECT * FROM products
INNER JOIN orders USING (product_id) INNER JOIN orders USING (product_id)

View File

@@ -4,14 +4,14 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
ndebug(); ndebug();
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));

View File

@@ -4,13 +4,13 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));

View File

@@ -10,8 +10,8 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
// enable Nette Debugger // enable Nette Debugger
@@ -19,8 +19,8 @@ ndebug();
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
'profiler' => array( 'profiler' => array(
'run' => TRUE, 'run' => TRUE,
) )
@@ -31,10 +31,9 @@ dibi::connect(array(
dibi::query('SELECT * FROM customers WHERE customer_id < ?', 38); dibi::query('SELECT * FROM customers WHERE customer_id < ?', 38);
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
'profiler' => array( 'profiler' => array(
'run' => TRUE, 'run' => TRUE,
) )

View File

@@ -1,5 +1,7 @@
<!DOCTYPE html><link rel="stylesheet" href="data/style.css"> <!DOCTYPE html><link rel="stylesheet" href="data/style.css">
<style> html { background: url(data/arrow.png) no-repeat bottom right; height: 100%; } </style>
<h1>Nette Debugger & Variables | dibi</h1> <h1>Nette Debugger & Variables | dibi</h1>
<p>Dibi can dump variables via Nette Debugger, part of Nette Framework.</p> <p>Dibi can dump variables via Nette Debugger, part of Nette Framework.</p>
@@ -10,8 +12,8 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
// enable Nette Debugger // enable Nette Debugger
@@ -19,8 +21,8 @@ NDebugger::enable();
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
'profiler' => array( 'profiler' => array(
'run' => TRUE, 'run' => TRUE,
) )

View File

@@ -4,13 +4,13 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
@@ -32,8 +32,6 @@ dibi::test('
// -> SELECT * FROM customers WHERE name LIKE 'K%' // -> SELECT * FROM customers WHERE name LIKE 'K%'
// if & else & (optional) end // if & else & (optional) end
dibi::test(" dibi::test("
SELECT * SELECT *
@@ -45,7 +43,6 @@ dibi::test("
// -> SELECT * FROM people WHERE id > 0 AND bar=2 // -> SELECT * FROM people WHERE id > 0 AND bar=2
// nested condition // nested condition
dibi::test(' dibi::test('
SELECT * SELECT *
@@ -56,3 +53,10 @@ dibi::test('
%else 1 LIMIT 10 %end' %else 1 LIMIT 10 %end'
); );
// -> SELECT * FROM customers WHERE LIMIT 10 // -> SELECT * FROM customers WHERE LIMIT 10
// IF()
dibi::test('UPDATE products SET', array(
'price' => array('IF(price_fixed, price, ?)', 123),
));
// -> SELECT * FROM customers WHERE LIMIT 10

View File

@@ -4,15 +4,15 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
date_default_timezone_set('Europe/Prague'); date_default_timezone_set('Europe/Prague');
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
@@ -29,7 +29,6 @@ dibi::test('
// -> SELECT COUNT(*) as [count] FROM [comments] WHERE [ip] LIKE '192.168.%' AND [date] > 876693600 // -> SELECT COUNT(*) as [count] FROM [comments] WHERE [ip] LIKE '192.168.%' AND [date] > 876693600
// dibi detects INSERT or REPLACE command // dibi detects INSERT or REPLACE command
dibi::test(' dibi::test('
REPLACE INTO products', array( REPLACE INTO products', array(
@@ -40,7 +39,6 @@ dibi::test('
// -> REPLACE INTO products ([title], [price], [active]) VALUES ('Super product', 318, 1) // -> REPLACE INTO products ([title], [price], [active]) VALUES ('Super product', 318, 1)
// multiple INSERT command // multiple INSERT command
$array = array( $array = array(
'title' => 'Super Product', 'title' => 'Super Product',
@@ -52,7 +50,6 @@ dibi::test("INSERT INTO products", $array, $array, $array);
// -> INSERT INTO products ([title], [price], [brand], [created]) VALUES ('Super Product', ...) , (...) , (...) // -> INSERT INTO products ([title], [price], [brand], [created]) VALUES ('Super Product', ...) , (...) , (...)
// dibi detects UPDATE command // dibi detects UPDATE command
dibi::test(" dibi::test("
UPDATE colors SET", array( UPDATE colors SET", array(
@@ -63,7 +60,6 @@ dibi::test("
// -> UPDATE colors SET [color]='blue', [order]=12 WHERE id=123 // -> UPDATE colors SET [color]='blue', [order]=12 WHERE id=123
// modifier applied to array // modifier applied to array
$array = array(1, 2, 3); $array = array(1, 2, 3);
dibi::test(" dibi::test("
@@ -74,7 +70,6 @@ dibi::test("
// -> SELECT * FROM people WHERE id IN ( 1, 2, 3 ) // -> SELECT * FROM people WHERE id IN ( 1, 2, 3 )
// modifier %by for ORDER BY // modifier %by for ORDER BY
$order = array( $order = array(
'field1' => 'asc', 'field1' => 'asc',
@@ -88,7 +83,6 @@ dibi::test("
// -> SELECT * FROM people ORDER BY [field1] ASC, [field2] DESC // -> SELECT * FROM people ORDER BY [field1] ASC, [field2] DESC
// indentifiers and strings syntax mix // indentifiers and strings syntax mix
dibi::test('UPDATE [table] SET `item` = "5 1/4"" diskette"'); dibi::test('UPDATE [table] SET `item` = "5 1/4"" diskette"');
// -> UPDATE [table] SET [item] = '5 1/4" diskette' // -> UPDATE [table] SET [item] = '5 1/4" diskette'

View File

@@ -4,16 +4,16 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
ndebug(); ndebug();
date_default_timezone_set('Europe/Prague'); date_default_timezone_set('Europe/Prague');
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
@@ -27,12 +27,10 @@ $res->setType('customer_id', Dibi::INTEGER)
dump( $res->fetch() ); dump( $res->fetch() );
// outputs: // outputs:
// object(DibiRow)#3 (3) { // DibiRow(3) {
// customer_id => int(1) // customer_id => 1
// name => string(11) "Dave Lister" // name => "Dave Lister" (11)
// added => object(DateTime53) {} // added => "2007-03-11 17:20:03" (19)
// }
// using auto-detection (works well with MySQL or other strictly typed databases) // using auto-detection (works well with MySQL or other strictly typed databases)
@@ -40,8 +38,7 @@ $res = dibi::query('SELECT * FROM [customers]');
dump( $res->fetch() ); dump( $res->fetch() );
// outputs: // outputs:
// object(DibiRow)#3 (3) { // DibiRow(3) {
// customer_id => int(1) // customer_id => 1
// name => string(11) "Dave Lister" // name => "Dave Lister" (11)
// added => string(15) "17:20 11.3.2007" // added => "2007-03-11 17:20:03" (19)
// }

View File

@@ -4,23 +4,21 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
date_default_timezone_set('Europe/Prague'); date_default_timezone_set('Europe/Prague');
// CHANGE TO REAL PARAMETERS! // CHANGE TO REAL PARAMETERS!
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
'formatDate' => "'Y-m-d'", 'formatDate' => "'Y-m-d'",
'formatDateTime' => "'Y-m-d H-i-s'", 'formatDateTime' => "'Y-m-d H-i-s'",
)); ));
// generate and dump SQL // generate and dump SQL
dibi::test(" dibi::test("
INSERT INTO [mytable]", array( INSERT INTO [mytable]", array(

View File

@@ -4,18 +4,17 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
ndebug(); ndebug();
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
// using the "prototype" to add custom method to class DibiResult // using the "prototype" to add custom method to class DibiResult
function DibiResult_prototype_fetchShuffle(DibiResult $obj) function DibiResult_prototype_fetchShuffle(DibiResult $obj)
{ {

View File

@@ -4,15 +4,15 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
date_default_timezone_set('Europe/Prague'); date_default_timezone_set('Europe/Prague');
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
@@ -35,7 +35,6 @@ dibi::select('product_id')->as('id')
// USING (product_id) INNER JOIN customers USING (customer_id) ORDER BY [title] // USING (product_id) INNER JOIN customers USING (customer_id) ORDER BY [title]
// SELECT ... // SELECT ...
echo dibi::select('title')->as('id') echo dibi::select('title')->as('id')
->from('products') ->from('products')
@@ -43,7 +42,6 @@ echo dibi::select('title')->as('id')
// -> Chair (as result of query: SELECT [title] AS [id] FROM [products]) // -> Chair (as result of query: SELECT [title] AS [id] FROM [products])
// INSERT ... // INSERT ...
dibi::insert('products', $record) dibi::insert('products', $record)
->setFlag('IGNORE') ->setFlag('IGNORE')
@@ -51,7 +49,6 @@ dibi::insert('products', $record)
// -> INSERT IGNORE INTO [products] ([title], [price], [active]) VALUES ('Super product', 318, 1) // -> INSERT IGNORE INTO [products] ([title], [price], [active]) VALUES ('Super product', 318, 1)
// UPDATE ... // UPDATE ...
dibi::update('products', $record) dibi::update('products', $record)
->where('product_id = ?', $id) ->where('product_id = ?', $id)
@@ -59,7 +56,6 @@ dibi::update('products', $record)
// -> UPDATE [products] SET [title]='Super product', [price]=318, [active]=1 WHERE product_id = 10 // -> UPDATE [products] SET [title]='Super product', [price]=318, [active]=1 WHERE product_id = 10
// DELETE ... // DELETE ...
dibi::delete('products') dibi::delete('products')
->where('product_id = ?', $id) ->where('product_id = ?', $id)
@@ -67,7 +63,6 @@ dibi::delete('products')
// -> DELETE FROM [products] WHERE product_id = 10 // -> DELETE FROM [products] WHERE product_id = 10
// custom commands // custom commands
dibi::command() dibi::command()
->update('products') ->update('products')
@@ -77,7 +72,6 @@ dibi::command()
// -> UPDATE [products] SET [title]='Super product', [price]=318, [active]=1 WHERE product_id = 10 // -> UPDATE [products] SET [title]='Super product', [price]=318, [active]=1 WHERE product_id = 10
dibi::command() dibi::command()
->truncate('products') ->truncate('products')
->test(); ->test();

View File

@@ -4,13 +4,13 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
@@ -19,13 +19,11 @@ dibi::test('SELECT * FROM [products]');
// -> SELECT * FROM [products] // -> SELECT * FROM [products]
// with limit = 2 // with limit = 2
dibi::test('SELECT * FROM [products] %lmt', 2); dibi::test('SELECT * FROM [products] %lmt', 2);
// -> SELECT * FROM [products] LIMIT 2 // -> SELECT * FROM [products] LIMIT 2
// with limit = 2, offset = 1 // with limit = 2, offset = 1
dibi::test('SELECT * FROM [products] %lmt %ofs', 2, 1); dibi::test('SELECT * FROM [products] %lmt %ofs', 2, 1);
// -> SELECT * FROM [products] LIMIT 2 OFFSET 1 // -> SELECT * FROM [products] LIMIT 2 OFFSET 1

View File

@@ -4,15 +4,15 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
date_default_timezone_set('Europe/Prague'); date_default_timezone_set('Europe/Prague');
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
// enable query logging to this file // enable query logging to this file
'profiler' => array( 'profiler' => array(
'run' => TRUE, 'run' => TRUE,
@@ -21,7 +21,6 @@ dibi::connect(array(
)); ));
try { try {
$res = dibi::query('SELECT * FROM [customers] WHERE [customer_id] = ?', 1); $res = dibi::query('SELECT * FROM [customers] WHERE [customer_id] = ?', 1);

View File

@@ -1,4 +1,4 @@
<?php ob_start(1) // needed by FirePHP ?> <?php ob_start() // needed by FirePHP ?>
<!DOCTYPE html><link rel="stylesheet" href="data/style.css"> <!DOCTYPE html><link rel="stylesheet" href="data/style.css">
@@ -6,13 +6,13 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
'profiler' => array( 'profiler' => array(
'run' => TRUE, 'run' => TRUE,
) )

View File

@@ -4,18 +4,16 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));
// create new substitution :blog: ==> wp_ // create new substitution :blog: ==> wp_
dibi::getSubstitutes()->blog = 'wp_'; dibi::getSubstitutes()->blog = 'wp_';
@@ -23,9 +21,6 @@ dibi::test("SELECT * FROM [:blog:items]");
// -> SELECT * FROM [wp_items] // -> SELECT * FROM [wp_items]
// create new substitution :: (empty) ==> my_ // create new substitution :: (empty) ==> my_
dibi::getSubstitutes()->{''} = 'my_'; dibi::getSubstitutes()->{''} = 'my_';
@@ -33,9 +28,6 @@ dibi::test("UPDATE ::table SET [text]='Hello World'");
// -> UPDATE my_table SET [text]='Hello World' // -> UPDATE my_table SET [text]='Hello World'
// create substitutions using fallback callback // create substitutions using fallback callback
function substFallBack($expr) function substFallBack($expr)
{ {

View File

@@ -4,13 +4,13 @@
<?php <?php
require_once 'Nette/Debugger.php'; require dirname(__FILE__) . '/Nette/Debugger.php';
require_once '../dibi/dibi.php'; require dirname(__FILE__) . '/../dibi/dibi.php';
dibi::connect(array( dibi::connect(array(
'driver' => 'sqlite', 'driver' => 'sqlite3',
'database' => 'data/sample.sdb', 'database' => 'data/sample.s3db',
)); ));

55
license.md Normal file
View File

@@ -0,0 +1,55 @@
Licenses
========
Good news! You may use Dibi under the terms of either the New BSD License
or the GNU General Public License (GPL) version 2 or 3.
The BSD License is recommended for most projects. It is easy to understand and it
places almost no restrictions on what you can do with the framework. If the GPL
fits better to your project, you can use the framework under this license.
You don't have to notify anyone which license you are using. You can freely
use Dibi in commercial projects as long as the copyright header
remains intact.
New BSD License
---------------
Copyright (c) 2004, 2014 David Grudl (http://davidgrudl.com)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of "Dibi" nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
This software is provided by the copyright holders and contributors "as is" and
any express or implied warranties, including, but not limited to, the implied
warranties of merchantability and fitness for a particular purpose are
disclaimed. In no event shall the copyright owner or contributors be liable for
any direct, indirect, incidental, special, exemplary, or consequential damages
(including, but not limited to, procurement of substitute goods or services;
loss of use, data, or profits; or business interruption) however caused and on
any theory of liability, whether in contract, strict liability, or tort
(including negligence or otherwise) arising in any way out of the use of this
software, even if advised of the possibility of such damage.
GNU General Public License
--------------------------
GPL licenses are very very long, so instead of including them here we offer
you URLs with full text:
- [GPL version 2](http://www.gnu.org/licenses/gpl-2.0.html)
- [GPL version 3](http://www.gnu.org/licenses/gpl-3.0.html)

View File

@@ -1,61 +0,0 @@
Licenses
========
Good news! You may use Dibi under the terms of either the New BSD License
or the GNU General Public License (GPL) version 2 or 3.
The BSD License is recommended for most projects. It is easy to understand and it
places almost no restrictions on what you can do with the library. If the GPL
fits better to your project, you can use the Dibi under this license.
You don't have to notify anyone which license you are using. You can freely
use Dibi in commercial projects as long as the copyright header
remains intact.
Please do not use word "Dibi" in the name of your project or top-level domain,
and choose a name that stands on its own merits. If your stuff is good,
it will not take long to establish a reputation for yourselves.
New BSD License
---------------
Copyright (c) 2005, 2012 David Grudl (http://davidgrudl.com)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of "Dibi" nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
GNU General Public License
--------------------------
GPL licenses are very very long, so instead of including them here we offer
you URLs with full text:
- GPL version 2: http://www.gnu.org/licenses/gpl-2.0.html
- GPL version 3: http://www.gnu.org/licenses/gpl-3.0.html

126
readme.md Normal file
View File

@@ -0,0 +1,126 @@
[Dibi](http://dibiphp.com) - smart database layer for PHP
=========================================================
Database access functions in PHP are not standardised. This library
hides the differences between them, and above all, it gives you a very handy interface.
The best way to install Dibi is to use a [Composer](http://getcomposer.org/download):
php composer.phar require dibi/dibi
Or you can download the latest package from http://dibiphp.com. In this
package is also `Dibi.minified`, shrinked single-file version of whole Dibi,
useful when you don't want to modify the library, but just use it.
Dibi requires PHP 5.2.0 or later. It has been tested with PHP 5.5 too.
Examples
--------
Refer to the `examples` directory for examples. Dibi documentation is
available on the [homepage](http://dibiphp.com).
Connect to database:
```php
// connect to database (static way)
dibi::connect(array(
'driver' => 'mysql',
'host' => 'localhost',
'username' => 'root',
'password' => '***',
));
// or object way; in all other examples use $connection-> instead of dibi::
$connection = new DibiConnection($options);
```
SELECT, INSERT, UPDATE
```php
dibi::query('SELECT * FROM users WHERE id = ?', $id);
$arr = array(
'name' => 'John',
'is_admin' => TRUE,
);
dibi::query('INSERT INTO users', $arr);
// INSERT INTO users (`name`, `is_admin`) VALUES ('John', 1)
dibi::query('UPDATE users SET', $arr, 'WHERE `id`=?', $x);
// UPDATE users SET `name`='John', `is_admin`=1 WHERE `id` = 123
dibi::query('UPDATE users SET', array(
'title' => array('SHA1(?)', 'tajneheslo'),
));
// UPDATE users SET 'title' = SHA1('tajneheslo')
```
Getting results
```php
$result = dibi::query('SELECT * FROM users');
$value = $result->fetchSingle(); // single value
$all = $result->fetchAll(); // all rows
$assoc = $result->fetchAssoc('id'); // all rows as associative array
$pairs = $result->fetchPairs('customerID', 'name'); // all rows as key => value pairs
// iterating
foreach ($result as $n => $row) {
print_r($row);
}
```
Modifiers for arrays:
```php
dibi::query('SELECT * FROM users WHERE %and', array(
array('number > ?', 10),
array('number < ?', 100),
));
// SELECT * FROM users WHERE (number > 10) AND (number < 100)
```
<table>
<tr><td> %and </td><td> </td><td> `[key]=val AND [key2]="val2" AND ...` </td></tr>
<tr><td> %or </td><td> </td><td> `[key]=val OR [key2]="val2" OR ...` </td></tr>
<tr><td> %a </td><td> assoc </td><td> `[key]=val, [key2]="val2", ...` </td></tr>
<tr><td> %l %in </td><td> list </td><td> `(val, "val2", ...)` </td></tr>
<tr><td> %v </td><td> values </td><td> `([key], [key2], ...) VALUES (val, "val2", ...)` </td></tr>
<tr><td> %m </td><td> multivalues </td><td> `([key], [key2], ...) VALUES (val, "val2", ...), (val, "val2", ...), ...` </td></tr>
<tr><td> %by </td><td> ordering </td><td> `[key] ASC, [key2] DESC ...` </td></tr>
<tr><td> %n </td><td> identifiers </td><td> `[key], [key2] AS alias, ...` </td></tr>
<tr><td> other </td><td> - </td><td> `val, val2, ...` </td></tr>
</table>
Modifiers for LIKE
```php
dibi::query("SELECT * FROM table WHERE name LIKE %like~", $query);
```
<table>
<tr><td> %like~ </td><td> begins with </td></tr>
<tr><td> %~like </td><td> ends with </td></tr>
<tr><td> %~like~ </td><td> contains </td></tr>
</table>
DateTime:
```php
dibi::query('UPDATE users SET', array(
'time' => new DateTime,
));
// UPDATE users SET ('2008-01-01 01:08:10')
```
Testing:
```php
echo dibi::$sql; // last SQL query
echo dibi::$elapsedTime;
echo dibi::$numOfQueries;
echo dibi::$totalTime;

View File

@@ -1,31 +0,0 @@
Introduction
------------
Thank you for downloading Dibi!
Database access functions in PHP are not standardised. This is class library
to hide the differences between the different databases access.
Documentation and Examples
--------------------------
Refer to the 'examples' directory for examples. Dibi documentation is
available on the homepage:
http://dibiphp.com
Dibi.minified
-------------
This is shrinked single-file version of whole Dibi, useful when you don't
want to modify library, but just use it.
This is exactly the same as normal version, just only comments and
whitespaces are removed.
-----
For more information, visit the author's weblog (in czech language):
http://phpfashion.com

View File

@@ -4,17 +4,14 @@
* Test: Cloning of DibiFluent * Test: Cloning of DibiFluent
* *
* @author David Grudl * @author David Grudl
* @category Dibi
* @subpackage UnitTests
*/ */
require dirname(__FILE__) . '/bootstrap.php';
require dirname(__FILE__) . '/initialize.php';
dibi::connect($config['sqlite']); dibi::connect($config['sqlite3']);
$fluent = new DibiFluent(dibi::getConnection()); $fluent = new DibiFluent(dibi::getConnection());
@@ -23,50 +20,21 @@ $dolly = clone $fluent;
$dolly->where('y=1'); $dolly->where('y=1');
$dolly->clause('FOO'); $dolly->clause('FOO');
$fluent->test(); Assert::same( 'SELECT * FROM [table] WHERE x=1', (string) $fluent );
$dolly->test(); Assert::same( 'SELECT * FROM [table] WHERE x=1 AND y=1 FOO', (string) $dolly );
$fluent = dibi::select('id')->from('table')->where('id = %i',1); $fluent = dibi::select('id')->from('table')->where('id = %i',1);
$dolly = clone $fluent; $dolly = clone $fluent;
$dolly->where('cd = %i',5); $dolly->where('cd = %i',5);
$fluent->test(); Assert::same( 'SELECT [id] FROM [table] WHERE id = 1', (string) $fluent );
$dolly->test(); Assert::same( 'SELECT [id] FROM [table] WHERE id = 1 AND cd = 5', (string) $dolly );
$fluent = dibi::select("*")->from("table"); $fluent = dibi::select("*")->from("table");
$dolly = clone $fluent; $dolly = clone $fluent;
$dolly->removeClause("select")->select("count(*)"); $dolly->removeClause("select")->select("count(*)");
$fluent->test(); Assert::same( 'SELECT * FROM [table]', (string) $fluent );
$dolly->test(); Assert::same( 'SELECT count(*) FROM [table]', (string) $dolly );
__halt_compiler() ?>
------EXPECT------
SELECT *
FROM [table]
WHERE x=1
SELECT *
FROM [table]
WHERE x=1 AND y=1 FOO
SELECT [id]
FROM [table]
WHERE id = 1
SELECT [id]
FROM [table]
WHERE id = 1 AND cd = 5
SELECT *
FROM [table]
SELECT count(*)
FROM [table]

View File

@@ -1,138 +0,0 @@
<?php
/**
* Nette Framework
*
* @copyright Copyright (c) 2004 David Grudl
* @license http://nette.org/license Nette license
* @link http://nette.org
* @category Nette
* @package Nette\Test
*/
/**
* Asseratation test helpers.
*
* @author David Grudl
* @package Nette\Test
*/
class Assert
{
/**
* Checks assertation.
* @param mixed expected
* @param mixed actual
* @return void
*/
public static function same($expected, $actual)
{
if ($actual !== $expected) {
self::note('Failed asserting that ' . self::dump($actual) . ' is not identical to ' . self::dump($expected));
}
}
/**
* Checks TRUE assertation.
* @param mixed actual
* @return void
*/
public static function true($actual)
{
if ($actual !== TRUE) {
self::note('Failed asserting that ' . self::dump($actual) . ' is not TRUE');
}
}
/**
* Checks FALSE assertation.
* @param mixed actual
* @return void
*/
public static function false($actual)
{
if ($actual !== FALSE) {
self::note('Failed asserting that ' . self::dump($actual) . ' is not FALSE');
}
}
/**
* Checks NULL assertation.
* @param mixed actual
* @return void
*/
public static function null($actual)
{
if ($actual !== NULL) {
self::note('Failed asserting that ' . self::dump($actual) . ' is not NULL');
}
}
/**
* Dumps information about a variable in readable format.
* @param mixed variable to dump
* @return void
*/
private static function dump($var)
{
if (is_bool($var)) {
return $var ? 'TRUE' : 'FALSE';
} elseif ($var === NULL) {
return "NULL";
} elseif (is_int($var)) {
return "$var";
} elseif (is_float($var)) {
return "$var";
} elseif (is_string($var)) {
return var_export($var, TRUE);
} elseif (is_array($var)) {
return "array(" . count($var) . ")";
} elseif ($var instanceof Exception) {
return 'Exception ' . get_class($var) . ': ' . ($var->getCode() ? '#' . $var->getCode() . ' ' : '') . $var->getMessage();
} elseif (is_object($var)) {
$arr = (array) $var;
return "object(" . get_class($var) . ") (" . count($arr) . ")";
} elseif (is_resource($var)) {
return "resource(" . get_resource_type($var) . ")";
} else {
return "unknown type";
}
}
/**
* Returns message and file and line from call stack.
* @param string
* @return void
*/
private static function note($message)
{
echo $message;
$trace = debug_backtrace();
if (isset($trace[1]['file'], $trace[1]['line'])) {
echo ' in file ' . $trace[1]['file'] . ' on line ' . $trace[1]['line'];
}
echo "\n\n";
}
}

View File

@@ -1,43 +0,0 @@
Nette Test Framework (v0.3)
---------------------------
<?php
require_once dirname(__FILE__) . '/TestRunner.php';
/**
* Help
*/
if (!isset($_SERVER['argv'][1])) { ?>
Usage:
php RunTests.php [options] [file or directory]
Options:
-p <php> Specify PHP-CGI executable to run.
-c <path> Look for php.ini in directory <path> or use <path> as php.ini.
-d key=val Define INI entry 'key' with value 'val'.
-l <path> Specify path to shared library files (LD_LIBRARY_PATH)
-e <name> Load php environment <name>
-s Show information about skipped tests
<?php
}
/**
* Execute tests
*/
try {
@unlink(dirname(__FILE__) . '/coverage.tmp'); // @ - file may not exist
$manager = new TestRunner;
$manager->parseConfigFile();
$manager->parseArguments();
$res = $manager->run();
die($res ? 0 : 1);
} catch (Exception $e) {
echo 'Error: ', $e->getMessage(), "\n";
die(2);
}

View File

@@ -1,400 +0,0 @@
<?php
/**
* Nette Framework
*
* @copyright Copyright (c) 2004 David Grudl
* @license http://nette.org/license Nette license
* @link http://nette.org
* @category Nette
* @package Nette\Test
*/
/**
* Single test case.
*
* @author David Grudl
* @package Nette\Test
*/
class TestCase
{
/** @var string test file */
private $file;
/** @var array test file multiparts */
private $sections;
/** @var string test output */
private $output;
/** @var string output headers in raw format */
private $headers;
/** @var string PHP command line */
private $cmdLine;
/** @var string PHP command line */
private $phpVersion;
/** @var array */
private static $cachedPhp;
/**
* @param string test file name
* @param string PHP command line
* @return void
*/
public function __construct($testFile)
{
$this->file = (string) $testFile;
$this->sections = self::parseSections($this->file);
}
/**
* Runs single test.
* @return void
*/
public function run()
{
// pre-skip?
$options = $this->sections['options'];
if (isset($options['skip'])) {
$message = $options['skip'] ? $options['skip'] : 'No message.';
throw new TestCaseException($message, TestCaseException::SKIPPED);
} elseif (isset($options['phpversion'])) {
$operator = '>=';
if (preg_match('#^(<=|le|<|lt|==|=|eq|!=|<>|ne|>=|ge|>|gt)#', $options['phpversion'], $matches)) {
$options['phpversion'] = trim(substr($options['phpversion'], strlen($matches[1])));
$operator = $matches[1];
}
if (version_compare($options['phpversion'], $this->phpVersion, $operator)) {
throw new TestCaseException("Requires PHP $operator $options[phpversion].", TestCaseException::SKIPPED);
}
}
$this->execute();
$output = $this->output;
$headers = array_change_key_case(self::parseLines($this->headers, ':'), CASE_LOWER);
$tests = 0;
// post-skip?
if (isset($headers['x-nette-test-skip'])) {
throw new TestCaseException($headers['x-nette-test-skip'], TestCaseException::SKIPPED);
}
// compare output
$expectedOutput = $this->getExpectedOutput();
if ($expectedOutput !== NULL) {
$tests++;
$binary = (bool) preg_match('#[\x00-\x08\x0B\x0C\x0E-\x1F]#', $expectedOutput);
if ($binary) {
if ($expectedOutput !== $output) {
throw new TestCaseException("Binary output doesn't match.");
}
} else {
$output = self::normalize($output, isset($options['keeptrailingspaces']));
$expectedOutput = self::normalize($expectedOutput, isset($options['keeptrailingspaces']));
if (!$this->compare($output, $expectedOutput)) {
throw new TestCaseException("Output doesn't match.");
}
}
}
// compare headers
$expectedHeaders = $this->getExpectedHeaders();
if ($expectedHeaders !== NULL) {
$tests++;
$expectedHeaders = self::normalize($expectedHeaders, FALSE);
$expectedHeaders = array_change_key_case(self::parseLines($expectedHeaders, ':'), CASE_LOWER);
foreach ($expectedHeaders as $name => $header) {
if (!isset($headers[$name])) {
throw new TestCaseException("Missing header '$name'.");
} elseif (!$this->compare($headers[$name], $header)) {
throw new TestCaseException("Header '$name' doesn't match.");
}
}
}
if (!$tests) { // expecting no output
if (trim($output) !== '') {
throw new TestCaseException("Empty output doesn't match.");
}
}
}
/**
* Sets PHP command line.
* @param string
* @param string
* @param string
* @return TestCase provides a fluent interface
*/
public function setPhp($binary, $args, $environment)
{
if (isset(self::$cachedPhp[$binary])) {
$this->phpVersion = self::$cachedPhp[$binary];
} else {
exec($environment . escapeshellarg($binary) . ' -v', $output, $res);
if ($res !== 0 && $res !== 255) {
throw new Exception("Unable to execute '$binary -v'.");
}
if (!preg_match('#^PHP (\S+).*cli#i', $output[0], $matches)) {
throw new Exception("Unable to detect PHP version (output: $output[0]).");
}
$this->phpVersion = self::$cachedPhp[$binary] = $matches[1];
}
$this->cmdLine = $environment . escapeshellarg($binary) . $args;
return $this;
}
/**
* Execute test.
* @return array
*/
private function execute()
{
$this->headers = $this->output = NULL;
$tempFile = tempnam('', 'tmp');
if (!$tempFile) {
throw new Exception("Unable to create temporary file.");
}
$command = $this->cmdLine;
if (isset($this->sections['options']['phpini'])) {
foreach (explode(';', $this->sections['options']['phpini']) as $item) {
$command .= " -d " . escapeshellarg(trim($item));
}
}
$command .= ' ' . escapeshellarg($this->file) . ' > ' . escapeshellarg($tempFile);
chdir(dirname($this->file));
exec($command, $foo, $res);
if ($res === 255) {
// exit_status 255 => parse or fatal error
} elseif ($res !== 0) {
throw new Exception("Unable to execute '$command'.");
}
$this->output = file_get_contents($tempFile);
unlink($tempFile);
}
/**
* Returns test file section.
* @return string
*/
public function getSection($name)
{
return isset($this->sections[$name]) ? $this->sections[$name] : NULL;
}
/**
* Returns test name.
* @return string
*/
public function getName()
{
return $this->sections['options']['name'];
}
/**
* Returns test output.
* @return string
*/
public function getOutput()
{
return $this->output;
}
/**
* Returns output headers.
* @return string
*/
public function getHeaders()
{
return $this->headers;
}
/**
* Returns expected output.
* @return string
*/
public function getExpectedOutput()
{
if (isset($this->sections['expect'])) {
return $this->sections['expect'];
} elseif (is_file($expFile = str_replace('.phpt', '', $this->file) . '.expect')) {
return file_get_contents($expFile);
} else {
return NULL;
}
}
/**
* Returns expected headers.
* @return string
*/
public function getExpectedHeaders()
{
return $this->getSection('expectheaders');
}
/********************* helpers ****************d*g**/
/**
* Splits file into sections.
* @param string file
* @return array
*/
public static function parseSections($testFile)
{
$content = file_get_contents($testFile);
$sections = array(
'options' => array(),
);
// phpDoc
$phpDoc = preg_match('#^/\*\*(.*?)\*/#ms', $content, $matches) ? trim($matches[1]) : '';
preg_match_all('#^\s*\*\s*@(\S+)(.*)#mi', $phpDoc, $matches, PREG_SET_ORDER);
foreach ($matches as $match) {
$sections['options'][strtolower($match[1])] = isset($match[2]) ? trim($match[2]) : TRUE;
}
$sections['options']['name'] = preg_match('#^\s*\*\s*TEST:(.*)#mi', $phpDoc, $matches) ? trim($matches[1]) : $testFile;
// file parts
$tmp = preg_split('#^-{3,}([^\s-]+)-{1,}(?:\r?\n|$)#m', $content, -1, PREG_SPLIT_DELIM_CAPTURE);
$i = 1;
while (isset($tmp[$i])) {
$sections[strtolower($tmp[$i])] = $tmp[$i+1];
$i += 2;
}
return $sections;
}
/**
* Splits HTTP headers into array.
* @param string
* @param string
* @return array
*/
public static function parseLines($raw, $separator)
{
$headers = array();
foreach (explode("\r\n", $raw) as $header) {
$a = strpos($header, $separator);
if ($a !== FALSE) {
$headers[trim(substr($header, 0, $a))] = (string) trim(substr($header, $a + 1));
}
}
return $headers;
}
/**
* Compares results.
* @param string
* @param string
* @return bool
*/
public static function compare($left, $right)
{
$right = strtr($right, array(
'%a%' => '[^\r\n]+', // one or more of anything except the end of line characters
'%a?%'=> '[^\r\n]*', // zero or more of anything except the end of line characters
'%A%' => '.+', // one or more of anything including the end of line characters
'%A?%'=> '.*', // zero or more of anything including the end of line characters
'%s%' => '[\t ]+', // one or more white space characters except the end of line characters
'%s?%'=> '[\t ]*', // zero or more white space characters except the end of line characters
'%S%' => '\S+', // one or more of characters except the white space
'%S?%'=> '\S*', // zero or more of characters except the white space
'%c%' => '[^\r\n]', // a single character of any sort (except the end of line)
'%d%' => '[0-9]+', // one or more digits
'%d?%'=> '[0-9]*', // zero or more digits
'%i%' => '[+-]?[0-9]+', // signed integer value
'%f%' => '[+-]?\.?\d+\.?\d*(?:[Ee][+-]?\d+)?', // floating point number
'%h%' => '[0-9a-fA-F]+',// one or more HEX digits
'%ns%'=> '(?:[_0-9a-zA-Z\\\\]+\\\\|N)?',// PHP namespace
'%[^' => '[^', // reg-exp
'%[' => '[', // reg-exp
']%' => ']+', // reg-exp
'.' => '\.', '\\' => '\\\\', '+' => '\+', '*' => '\*', '?' => '\?', '[' => '\[', '^' => '\^', ']' => '\]', '$' => '\$', '(' => '\(', ')' => '\)', // preg quote
'{' => '\{', '}' => '\}', '=' => '\=', '!' => '\!', '>' => '\>', '<' => '\<', '|' => '\|', ':' => '\:', '-' => '\-', "\x00" => '\000', '#' => '\#', // preg quote
));
return (bool) preg_match("#^$right$#s", $left);
}
/**
* Normalizes whitespace
* @param string
* @param bool
* @return string
*/
public static function normalize($s, $keepTrailingSpaces)
{
$s = str_replace("\n", PHP_EOL, str_replace("\r\n", "\n", $s)); // normalize EOL
if (!$keepTrailingSpaces) {
$s = preg_replace("#[\t ]+(\r?\n)#", '$1', $s); // multiline right trim
$s = rtrim($s); // ending trim
}
return $s;
}
}
/**
* Single test exception.
*
* @author David Grudl
* @package Nette\Test
*/
class TestCaseException extends Exception
{
const SKIPPED = 1;
}

View File

@@ -1,312 +0,0 @@
<?php
/**
* Nette Framework
*
* @copyright Copyright (c) 2004 David Grudl
* @license http://nette.org/license Nette license
* @link http://nette.org
* @category Nette
* @package Nette\Test
*/
require dirname(__FILE__) . '/TestCase.php';
/**
* Test helpers.
*
* @author David Grudl
* @package Nette\Test
*/
class TestHelpers
{
/** @var int */
static public $maxDepth = 5;
/** @var array */
private static $sections;
/**
* Configures PHP and environment.
* @return void
*/
public static function startup()
{
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', TRUE);
ini_set('html_errors', FALSE);
ini_set('log_errors', FALSE);
$_SERVER = array_intersect_key($_SERVER, array_flip(array('PHP_SELF', 'SCRIPT_NAME', 'SERVER_ADDR', 'SERVER_SOFTWARE', 'HTTP_HOST', 'DOCUMENT_ROOT', 'OS')));
$_SERVER['REQUEST_TIME'] = 1234567890;
$_ENV = array();
if (PHP_SAPI !== 'cli') {
header('Content-Type: text/plain; charset=utf-8');
}
if (extension_loaded('xdebug')) {
xdebug_disable();
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
register_shutdown_function(array(__CLASS__, 'prepareSaveCoverage'));
}
set_exception_handler(array(__CLASS__, 'exceptionHandler'));
}
/**
* Purges directory.
* @param string
* @return void
*/
public static function purge($dir)
{
@mkdir($dir); // @ - directory may already exist
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir), RecursiveIteratorIterator::CHILD_FIRST) as $entry) {
if ($entry->getBasename() === '.gitignore') {
// ignore
} elseif ($entry->isDir()) {
rmdir($entry);
} else {
unlink($entry);
}
}
}
/**
* Returns current test section.
* @param string
* @param string
* @return mixed
*/
public static function getSection($file, $section)
{
if (!isset(self::$sections[$file])) {
self::$sections[$file] = TestCase::parseSections($file);
}
$lowerSection = strtolower($section);
if (!isset(self::$sections[$file][$lowerSection])) {
throw new Exception("Missing section '$section' in file '$file'.");
}
if (in_array($section, array('GET', 'POST', 'SERVER'), TRUE)) {
return TestCase::parseLines(self::$sections[$file][$lowerSection], '=');
} else {
return self::$sections[$file][$lowerSection];
}
}
/**
* Writes new message.
* @param string
* @return void
*/
public static function note($message = NULL)
{
echo $message ? "$message\n\n" : "===\n\n";
}
/**
* Dumps information about a variable in readable format.
* @param mixed variable to dump
* @param string
* @return mixed variable itself or dump
*/
public static function dump($var, $message = NULL)
{
if ($message) {
echo $message . (preg_match('#[.:?]$#', $message) ? ' ' : ': ');
}
self::_dump($var, 0);
echo "\n";
return $var;
}
private static function _dump(& $var, $level = 0)
{
static $tableUtf, $tableBin, $reBinary = '#[^\x09\x0A\x0D\x20-\x7E\xA0-\x{10FFFF}]#u';
if ($tableUtf === NULL) {
foreach (range("\x00", "\xFF") as $ch) {
if (ord($ch) < 32 && strpos("\r\n\t", $ch) === FALSE) $tableUtf[$ch] = $tableBin[$ch] = '\\x' . str_pad(dechex(ord($ch)), 2, '0', STR_PAD_LEFT);
elseif (ord($ch) < 127) $tableUtf[$ch] = $tableBin[$ch] = $ch;
else { $tableUtf[$ch] = $ch; $tableBin[$ch] = '\\x' . dechex(ord($ch)); }
}
$tableBin["\\"] = '\\\\';
$tableBin["\r"] = '\\r';
$tableBin["\n"] = '\\n';
$tableBin["\t"] = '\\t';
$tableUtf['\\x'] = $tableBin['\\x'] = '\\\\x';
}
if (is_bool($var)) {
echo ($var ? 'TRUE' : 'FALSE') . "\n";
} elseif ($var === NULL) {
echo "NULL\n";
} elseif (is_int($var)) {
echo "$var\n";
} elseif (is_float($var)) {
$var = (string) $var;
if (strpos($var, '.') === FALSE) $var .= '.0';
echo "$var\n";
} elseif (is_string($var)) {
$s = strtr($var, preg_match($reBinary, $var) || preg_last_error() ? $tableBin : $tableUtf);
echo "\"$s\"\n";
} elseif (is_array($var)) {
echo "array(";
$space = str_repeat("\t", $level);
static $marker;
if ($marker === NULL) $marker = uniqid("\x00", TRUE);
if (empty($var)) {
} elseif (isset($var[$marker])) {
echo " *RECURSION* ";
} elseif ($level < self::$maxDepth) {
echo "\n";
$vector = range(0, count($var) - 1) === array_keys($var);
$var[$marker] = 0;
foreach ($var as $k => &$v) {
if ($k === $marker) continue;
if ($vector) {
echo "$space\t";
} else {
$k = is_int($k) ? $k : '"' . strtr($k, preg_match($reBinary, $k) || preg_last_error() ? $tableBin : $tableUtf) . '"';
echo "$space\t$k => ";
}
self::_dump($v, $level + 1);
}
unset($var[$marker]);
echo "$space";
} else {
echo " ... ";
}
echo ")\n";
} elseif ($var instanceof Exception) {
echo 'Exception ', get_class($var), ': ', ($var->getCode() ? '#' . $var->getCode() . ' ' : '') . $var->getMessage(), "\n";
} elseif (is_object($var)) {
$arr = (array) $var;
echo get_class($var) . "(";
$space = str_repeat("\t", $level);
static $list = array();
if (empty($arr)) {
} elseif (in_array($var, $list, TRUE)) {
echo " *RECURSION* ";
} elseif ($level < self::$maxDepth) {
echo "\n";
$list[] = $var;
foreach ($arr as $k => &$v) {
$m = '';
if ($k[0] === "\x00") {
$m = $k[1] === '*' ? ' protected' : ' private';
$k = substr($k, strrpos($k, "\x00") + 1);
}
$k = strtr($k, preg_match($reBinary, $k) || preg_last_error() ? $tableBin : $tableUtf);
echo "$space\t\"$k\"$m => ";
echo self::_dump($v, $level + 1);
}
array_pop($list);
echo "$space";
} else {
echo " ... ";
}
echo ")\n";
} elseif (is_resource($var)) {
echo get_resource_type($var) . " resource\n";
} else {
echo "unknown type\n";
}
}
/**
* Custom exception handler.
* @param Exception
* @return void
*/
public static function exceptionHandler(Exception $exception)
{
echo 'Error: Uncaught ';
echo $exception;
}
/**
* Coverage saving helper.
* @return void
*/
public static function prepareSaveCoverage()
{
register_shutdown_function(array(__CLASS__, 'saveCoverage'));
}
/**
* Saves information about code coverage.
* @return void
*/
public static function saveCoverage()
{
$file = dirname(__FILE__) . '/coverage.tmp';
$coverage = @unserialize(file_get_contents($file));
$root = realpath(dirname(__FILE__) . '/../../Nette') . DIRECTORY_SEPARATOR;
foreach (xdebug_get_code_coverage() as $filename => $lines) {
if (strncmp($root, $filename, strlen($root))) continue;
foreach ($lines as $num => $val) {
if (empty($coverage[$filename][$num]) || $val > 0) {
$coverage[$filename][$num] = $val; // -1 => untested; -2 => dead code
}
}
}
file_put_contents($file, serialize($coverage));
}
/**
* Skips this test.
* @return void
*/
public static function skip($message = 'No message.')
{
header('X-Nette-Test-Skip: '. $message);
exit;
}
}

View File

@@ -1,230 +0,0 @@
<?php
/**
* Nette Framework
*
* @copyright Copyright (c) 2004 David Grudl
* @license http://nette.org/license Nette license
* @link http://nette.org
* @category Nette
* @package Nette\Test
*/
require dirname(__FILE__) . '/TestCase.php';
/**
* Test runner.
*
* @author David Grudl
* @package Nette\Test
*/
class TestRunner
{
const OUTPUT = 'output';
const EXPECTED = 'expect';
const HEADERS = 'headers';
/** @var string path to test file/directory */
public $path;
/** @var string php-cgi binary */
public $phpBinary;
/** @var string php-cgi command-line arguments */
public $phpArgs;
/** @var string php-cgi environment variables */
public $phpEnvironment;
/** @var bool display skipped tests information? */
public $displaySkipped = FALSE;
/**
* Runs all tests.
* @return void
*/
public function run()
{
$count = 0;
$failed = $passed = $skipped = array();
if (is_file($this->path)) {
$files = array($this->path);
} else {
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($this->path));
}
foreach ($files as $entry) {
$entry = (string) $entry;
$info = pathinfo($entry);
if (!isset($info['extension']) || $info['extension'] !== 'phpt') {
continue;
}
$count++;
$testCase = new TestCase($entry);
$testCase->setPhp($this->phpBinary, $this->phpArgs, $this->phpEnvironment);
try {
$testCase->run();
echo '.';
$passed[] = array($testCase->getName(), $entry);
} catch (TestCaseException $e) {
if ($e->getCode() === TestCaseException::SKIPPED) {
echo 's';
$skipped[] = array($testCase->getName(), $entry, $e->getMessage());
} else {
echo 'F';
$failed[] = array($testCase->getName(), $entry, $e->getMessage());
$this->log($entry, $testCase->getOutput(), self::OUTPUT);
$this->log($entry, $testCase->getExpectedOutput(), self::EXPECTED);
if ($testCase->getExpectedHeaders() !== NULL) {
$this->log($entry, $testCase->getHeaders(), self::OUTPUT, self::HEADERS);
$this->log($entry, $testCase->getExpectedHeaders(), self::EXPECTED, self::HEADERS);
}
}
}
}
$failedCount = count($failed);
$skippedCount = count($skipped);
if ($this->displaySkipped && $skippedCount) {
echo "\n\nSkipped:\n";
foreach ($skipped as $i => $item) {
list($name, $file, $message) = $item;
echo "\n", ($i + 1), ") $name\n $message\n $file\n";
}
}
if (!$count) {
echo "No tests found\n";
} elseif ($failedCount) {
echo "\n\nFailures:\n";
foreach ($failed as $i => $item) {
list($name, $file, $message) = $item;
echo "\n", ($i + 1), ") $name\n $message\n $file\n";
}
echo "\nFAILURES! ($count tests, $failedCount failures, $skippedCount skipped)\n";
return FALSE;
} else {
echo "\n\nOK ($count tests, $skippedCount skipped)\n";
}
return TRUE;
}
/**
* Returns output file for logging.
* @param string
* @param string
* @param string
* @param string
* @return void
*/
public function log($testFile, $content, $type, $section = '')
{
$file = dirname($testFile) . '/' . $type . '/' . basename($testFile, '.phpt') . ($section ? ".$section" : '') . '.raw';
@mkdir(dirname($file)); // @ - directory may already exist
file_put_contents($file, $content);
}
/**
* Parses configuration file.
* @return void
*/
public function parseConfigFile()
{
$configFile = dirname(__FILE__) . '/config.ini';
if (file_exists($configFile)) {
$this->config = parse_ini_file($configFile, TRUE);
if ($this->config === FALSE) {
throw new Exception('Config file parsing failed.');
}
foreach ($this->config as & $environment) {
$environment += array(
'binary' => 'php-cgi',
'args' => '',
'environment' => '',
);
// shorthand options
if (isset($environment['php.ini'])) {
$environment['args'] .= ' -c '. escapeshellarg($environment['php.ini']);
}
if (isset($environment['libraries'])) {
$environment['environment'] .= 'LD_LIBRARY_PATH='. escapeshellarg($environment['libraries']) .' ';
}
}
}
}
/**
* Parses command line arguments.
* @return void
*/
public function parseArguments()
{
$this->phpBinary = 'php-cgi';
$this->phpArgs = '';
$this->phpEnvironment = '';
$this->path = getcwd(); // current directory
$args = new ArrayIterator(array_slice(isset($_SERVER['argv']) ? $_SERVER['argv'] : array(), 1));
foreach ($args as $arg) {
if (!preg_match('#^[-/][a-z]$#', $arg)) {
if ($path = realpath($arg)) {
$this->path = $path;
} else {
throw new Exception("Invalid path '$arg'.");
}
} else switch ($arg[1]) {
case 'p':
$args->next();
$this->phpBinary = $args->current();
break;
case 'c':
case 'd':
$args->next();
$this->phpArgs .= " -$arg[1] " . escapeshellarg($args->current());
break;
case 'l':
$args->next();
$this->phpEnvironment .= 'LD_LIBRARY_PATH='. escapeshellarg($args->current()) . ' ';
break;
case 'e':
$args->next();
$name = $args->current();
if (!isset($this->config[$name])) {
throw new Exception("Unknown environment name '$name'.");
}
$this->phpBinary = $this->config[$name]['binary'];
$this->phpArgs = $this->config[$name]['args'];
$this->phpEnvironment = $this->config[$name]['environment'];
break;
case 's':
$this->displaySkipped = TRUE;
break;
default:
throw new Exception("Unknown option -$arg[1].");
exit;
}
}
}
}

20
tests/bootstrap.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
// The Nette Tester command-line runner can be
// invoked through the command: ../../vendor/bin/tester .
if (@!include __DIR__ . '/../vendor/autoload.php') {
echo 'Install Nette Tester using `composer update --dev`';
exit(1);
}
// configure environment
Tester\Environment::setup();
date_default_timezone_set('Europe/Prague');
class_alias('Tester\Assert', 'Assert');
// load connections
define('DIR', dirname(__FILE__));
$config = parse_ini_file(dirname(__FILE__) . '/config.ini', TRUE);

View File

@@ -1,26 +0,0 @@
<?php
/**
* Test initialization and helpers.
*
* @author David Grudl
* @package Nette\Test
*/
require dirname(__FILE__) . '/NetteTest/TestHelpers.php';
require dirname(__FILE__) . '/NetteTest/Assert.php';
require dirname(__FILE__) . '/../dibi/dibi.php';
date_default_timezone_set('Europe/Prague');
TestHelpers::startup();
if (function_exists('class_alias')) {
class_alias('TestHelpers', 'T');
} else {
class T extends TestHelpers {}
}
// load connections
define('DIR', dirname(__FILE__));
$config = parse_ini_file('config.ini', TRUE);

View File

@@ -1 +1 @@
Dibi 2.0.2 (revision $WCREV$ released on $WCDATE$) Dibi 2.1.3 (released on 2015-01-13)