diff --git a/docs/classes/Query.Abstract_Driver.html b/docs/classes/Query.Abstract_Driver.html index d9897de..b6fb3d0 100644 --- a/docs/classes/Query.Abstract_Driver.html +++ b/docs/classes/Query.Abstract_Driver.html @@ -139,98 +139,37 @@
- + \
-
+
- + Query
-
+
- + Drivers
-
+
- - Firebird -
-
-
- - - -
-
-
-
- -
-
-
- - Mysql -
-
-
- - - -
-
-
-
- -
-
-
- - Pgsql -
-
-
- - - -
-
-
-
- -
-
-
- + Sqlite
-
+
@@ -247,17 +186,78 @@ -
-
- -
-

$util

-
$util : \Query\Abstract_Util
-

Reference to util class

- - -

Type

- \Query\Abstract_Util -
-
- -
- -
-
- -
-

$last_query

-
$last_query : string
-

Last query executed

- - -

Type

- string -
-
- -
- -
-
- -
-

$table_prefix

-
$table_prefix : string
-

Prefix to apply to table names

- - -

Type

- string -
-
- -
-
@@ -620,6 +534,96 @@
+ +
+

$util

+
$util : \Query\Abstract_Util
+

Reference to util class

+ + +

Type

+ \Query\Abstract_Util +
+
+ +
+ +
+
+ +
+

$last_query

+
$last_query : string
+

Last query executed

+ + +

Type

+ string +
+
+ +
+ +
+
+ +
+

$table_prefix

+
$table_prefix : string
+

Prefix to apply to table names

+ + +

Type

+ string +
+
+ +
+ +
+

$has_truncate

@@ -765,6 +769,78 @@
+ +
+

get_last_query()

+ +
get_last_query() : string
+

Get the last sql query exexcuted

+ + + + +

Returns

+ string +
+
+ +
+ +
+
+ +
+

set_last_query()

+ +
set_last_query(string $query_string) : void
+

Set the last query sql

+ + +

Parameters

+ + + + + + +
string$query_string
+ + +
+
+ +
+ +
+

get_sql()

@@ -831,6 +907,45 @@
+ +
+

set_table_prefix()

+ +
set_table_prefix(string $prefix) : void
+

Set the common table name prefix

+ + +

Parameters

+ + + + + + +
string$prefix
+ + +
+
+ +
+ +
+

prepare_query()

@@ -1624,7 +1739,7 @@ the connection/database

insert_batch()

-
insert_batch(string $table, array $data) : array
+
insert_batch(string $table, array $data) : null|\Query\array<string|array|\Query\null>

Create sql for batch insert

@@ -1644,7 +1759,7 @@ the connection/database

Returns

- array + null|\Query\array
-
-
- -
-

$util

-
$util : \Query\Driver\Abstract_Util
-

Alias to driver util class

- - -

Type

- \Query\Driver\Abstract_Util -
-
- -
- -
-
- -
-

$sql

-
$sql : \Query\Driver\SQL_Interface
-

Alias to driver sql class

- - -

Type

- \Query\Driver\SQL_Interface -
-
- -
-
@@ -1161,6 +1101,66 @@ array(

+
+
+ +
+

$util

+
$util : \Query\Driver\Abstract_Util
+

Alias to driver util class

+ + +

Type

+ \Query\Driver\Abstract_Util +
+
+ +
+ +
+
+ +
+

$sql

+
$sql : \Query\Driver\SQL_Interface
+

Alias to driver sql class

+ + +

Type

+ \Query\Driver\SQL_Interface +
+
+ +
+
@@ -1796,7 +1796,7 @@ array(

_compile()

-
_compile(string $type, string $table) : \Query\$string
+
_compile(string $type, string $table) : string

String together the sql statements for sending to the db

@@ -1816,7 +1816,7 @@ array(

Returns

- \Query\$string + string
-
-
- -
-

__construct()

- -
__construct()
-

Private constructor to prevent multiple instances

- - - - -
-
- -
- -
-
- -
-

__clone()

- -
__clone()
-

Private clone method to prevent cloning

- - - - -
-
- -
- -
-
- -
-

__wakeup()

- -
__wakeup()
-

Make sure serialize/deserialize doesn't work

- - - -

Throws

-
-
\DomainException
-
-
- -
-
- -
-
-

parse_params()

+

parse_params()

parse_params(\stdClass $params) : array

Parses params into a dsn and option array

@@ -775,6 +762,45 @@ Query method

+
+
+ +
+

__construct()

+ +
__construct()
+

Private constructor to prevent multiple instances

+ + + + +
+
+ +
+
@@ -871,7 +897,7 @@ Query method


Documentation is powered by phpDocumentor and authored - on July 29th, 2015 at 16:44. + on July 31st, 2015 at 10:55.
diff --git a/docs/classes/Query.Driver_Interface.html b/docs/classes/Query.Driver_Interface.html index ae2bee5..a861bfc 100644 --- a/docs/classes/Query.Driver_Interface.html +++ b/docs/classes/Query.Driver_Interface.html @@ -139,98 +139,37 @@
- + \
-
+
- + Query
-
+
- + Drivers
-
+
- - Firebird -
-
-
- - - -
-
-
-
- -
-
-
- - Mysql -
-
-
- - - -
-
-
-
- -
-
-
- - Pgsql -
-
-
- - - -
-
-
-
- -
-
-
- + Sqlite
-
+
@@ -247,17 +186,78 @@
-
+
+
+
+
+
+ +
+
+
+ + Mysql +
+
+
+ + + +
+
+
+
+ +
+
+
+ + Pdo_firebird +
+
+
+ + + +
+
+
+
+ + @@ -416,7 +416,7 @@

__construct()

-
__construct(string $dsn, string $username, string $password, array $driver_options) : void
+
__construct(string $dsn, string $username, string $password, array $driver_options)

Constructor/Connection method

@@ -1236,14 +1236,14 @@ the connection/database

quote_ident()

-
quote_ident(mixed $ident) : string
+
quote_ident(string|array $ident) : string|array

Surrounds the string with the databases identifier escape characters

Parameters

- + @@ -1251,7 +1251,7 @@ the connection/database

Returns

- string + string|array
mixedstring|array $ident
- + @@ -1292,7 +1292,7 @@ the connection/database

Returns

- string + string|array
stringstring|array $table
- - - - -
- todo - -
- -
- -
-
- -
-

$last_query

-
$last_query : string
-

Last query executed

- - -

Type

- string -
-
- -
- -
-
- -
-

$table_prefix

-
$table_prefix : string
-

Prefix to apply to table names

- - -

Type

- string -
-
- -
-
@@ -803,6 +711,102 @@ the last query executed

+
+
+ +
+

$util

+
$util : \Query\Abstract_Util
+

Reference to util class

+ + +

Type

+ \Query\Abstract_Util +
+
+ +
+ +
+
+ +
+

$last_query

+
$last_query : string
+

Last query executed

+ + +

Type

+ string +
+
+ +
+ +
+
+ +
+

$table_prefix

+
$table_prefix : string
+

Prefix to apply to table names

+ + +

Type

+ string +
+
+ +
+
@@ -1100,7 +1104,7 @@ the last query executed

query()

-
query(string $sql) : \Query\Drivers\Firebird\Firebird_Result
+
query(string $sql) : \Query\Drivers\Firebird\Result

Wrapper public function to better match PDO

@@ -1120,7 +1124,7 @@ the last query executed

Returns

- \Query\Drivers\Firebird\Firebird_Result + \Query\Drivers\Firebird\Result