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

typo, docs

This commit is contained in:
David Grudl
2015-11-06 23:00:36 +01:00
parent 607ec8ae77
commit e9c677c750
4 changed files with 4 additions and 4 deletions

View File

@@ -113,7 +113,7 @@ echo "</p>\n";
// connects to SQLSRV // connects to SQLSRV
echo '<p>Connecting to SQLSRV: '; echo '<p>Connecting to Microsoft SQL Server: ';
try { try {
dibi::connect([ dibi::connect([
'driver' => 'sqlsrv', 'driver' => 'sqlsrv',

View File

@@ -13,7 +13,7 @@ use Dibi\Helpers;
/** /**
* The dibi driver for SQLSRV database. * The dibi driver for Microsoft SQL Server and SQL Azure databases.
* *
* Driver options: * Driver options:
* - host => the MS SQL server host name. It can also include a port number (hostname:port) * - host => the MS SQL server host name. It can also include a port number (hostname:port)

View File

@@ -11,7 +11,7 @@ use Dibi;
/** /**
* The dibi reflector for SQLSRV databases. * The dibi reflector for Microsoft SQL Server and SQL Azure databases.
* @internal * @internal
*/ */
class SqlsrvReflector implements Dibi\Reflector class SqlsrvReflector implements Dibi\Reflector

View File

@@ -255,7 +255,7 @@ class Result implements IDataSource
* - associative descriptor: col1|col2->col3=col4 * - associative descriptor: col1|col2->col3=col4
* builds a tree: $tree[$val1][$val2]->col3[$val3] = val4 * builds a tree: $tree[$val1][$val2]->col3[$val3] = val4
* @param string associative descriptor * @param string associative descriptor
* @return Row * @return array
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
*/ */
final public function fetchAssoc($assoc) final public function fetchAssoc($assoc)