mirror of
https://github.com/dg/dibi.git
synced 2025-08-04 21:28:02 +02:00
typo, docs
This commit is contained in:
@@ -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',
|
||||||
|
@@ -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)
|
||||||
|
@@ -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
|
||||||
|
@@ -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)
|
||||||
|
Reference in New Issue
Block a user