mirror of
https://github.com/dg/dibi.git
synced 2025-08-05 05:37:39 +02:00
typos
This commit is contained in:
@@ -102,7 +102,7 @@ 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>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -154,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 ms</th><th>SQL Statement</th><th>Rows</th><th>Connection</th></tr>' . $s . '
|
<tr><th>Time ms</th><th>SQL Statement</th><th>Rows</th><th>Connection</th></tr>' . $s . '
|
||||||
|
@@ -60,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')
|
||||||
|
@@ -10,6 +10,7 @@
|
|||||||
* SQL literal value.
|
* SQL literal value.
|
||||||
*
|
*
|
||||||
* @author David Grudl
|
* @author David Grudl
|
||||||
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
class DibiLiteral extends DibiObject
|
class DibiLiteral extends DibiObject
|
||||||
{
|
{
|
||||||
|
@@ -12,8 +12,8 @@ require dirname(__FILE__) . '/../dibi/dibi.php';
|
|||||||
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';
|
||||||
|
|
||||||
@@ -27,8 +27,8 @@ echo "</p>\n";
|
|||||||
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';
|
||||||
|
|
||||||
|
@@ -1,6 +1,9 @@
|
|||||||
[Dibi](http://dibiphp.com) - smart database layer for PHP
|
[Dibi](http://dibiphp.com) - smart database layer for PHP
|
||||||
=========================================================
|
=========================================================
|
||||||
|
|
||||||
|
[](https://packagist.org/packages/dibi/dibi)
|
||||||
|
[](https://travis-ci.org/dg/dibi)
|
||||||
|
|
||||||
Database access functions in PHP are not standardised. This library
|
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.
|
hides the differences between them, and above all, it gives you a very handy interface.
|
||||||
|
|
||||||
@@ -125,8 +128,3 @@ echo dibi::$elapsedTime;
|
|||||||
echo dibi::$numOfQueries;
|
echo dibi::$numOfQueries;
|
||||||
echo dibi::$totalTime;
|
echo dibi::$totalTime;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
-----
|
|
||||||
|
|
||||||
[](http://travis-ci.org/dg/dibi)
|
|
||||||
|
Reference in New Issue
Block a user