From bab101a83b56f1fa31f415211df5e2569d75f3c6 Mon Sep 17 00:00:00 2001
From: Nils Schwabe
Date: Mon, 7 Jul 2014 15:34:40 +0200
Subject: Remove unintentionally added f3 docs
---
management-interface/lib/api/classDB_1_1SQL.html | 547 -----------------------
1 file changed, 547 deletions(-)
delete mode 100644 management-interface/lib/api/classDB_1_1SQL.html
(limited to 'management-interface/lib/api/classDB_1_1SQL.html')
diff --git a/management-interface/lib/api/classDB_1_1SQL.html b/management-interface/lib/api/classDB_1_1SQL.html
deleted file mode 100644
index f993b6a..0000000
--- a/management-interface/lib/api/classDB_1_1SQL.html
+++ /dev/null
@@ -1,547 +0,0 @@
-
-
-
-
-
-
-
PDO wrapper.
- More...
-
-
-
-
-
-

-
-
-
- |
-| | begin () |
-| |
-| | rollback () |
-| |
-| | commit () |
-| |
-| | type ($val) |
-| |
-| | value ($type, $val) |
-| |
-| | exec ($cmds, $args=NULL, $ttl=0, $log=TRUE) |
-| |
-| | count () |
-| |
-| | log () |
-| |
-| | schema ($table, $fields=NULL, $ttl=0) |
-| |
-| | quote ($val, $type=\PDO::PARAM_STR) |
-| |
-| | uuid () |
-| |
-| | driver () |
-| |
-| | version () |
-| |
-| | name () |
-| |
-| | quotekey ($key) |
-| |
-| | __construct ($dsn, $user=NULL, $pw=NULL, array $options=NULL) |
-| |
-
- |
-|
- | $dsn |
-| | Data source name.
|
-| |
-|
- | $engine |
-| | Database engine.
|
-| |
-|
- | $dbname |
-| | Database name.
|
-| |
-|
- | $trans =FALSE |
-| | Transaction flag.
|
-| |
-|
- | $rows =0 |
-| | Number of rows affected by query.
|
-| |
-|
- | $log |
-| | SQL log.
|
-| |
-
-
-
-
-
-
-
-
- | DB\SQL::__construct |
- ( |
- |
- $dsn, |
-
-
- |
- |
- |
- $user = NULL, |
-
-
- |
- |
- |
- $pw = NULL, |
-
-
- |
- |
- array |
- $options = NULL |
-
-
- |
- ) |
- | |
-
-
-
-
Instantiate class
-
- Parameters
-
-
- | $dsn | string |
- | $user | string |
- | $pw | string |
- | $options | array |
-
-
-
-
-
-
-
-
-
-
-
-
- | DB\SQL::begin |
- ( |
- | ) |
- |
-
-
-
-
Begin SQL transaction
-
- Returns
- bool
-
-
-
-
-
-
-
-
- | DB\SQL::commit |
- ( |
- | ) |
- |
-
-
-
-
Commit SQL transaction
-
- Returns
- bool
-
-
-
-
-
-
-
-
- | DB\SQL::count |
- ( |
- | ) |
- |
-
-
-
-
Return number of rows affected by last query
-
- Returns
- int
-
-
-
-
-
-
-
-
- | DB\SQL::driver |
- ( |
- | ) |
- |
-
-
-
-
Return database engine
-
- Returns
- string
-
-
-
-
-
-
-
-
- | DB\SQL::exec |
- ( |
- |
- $cmds, |
-
-
- |
- |
- |
- $args = NULL, |
-
-
- |
- |
- |
- $ttl = 0, |
-
-
- |
- |
- |
- $log = TRUE |
-
-
- |
- ) |
- | |
-
-
-
-
Execute SQL statement(s)
-
- Returns
- array|int|FALSE
-
- Parameters
-
-
- | $cmds | string|array |
- | $args | string|array |
- | $ttl | int |
- | $log | bool |
-
-
-
-
-
-
-
-
-
-
-
- | DB\SQL::log |
- ( |
- | ) |
- |
-
-
-
-
Return SQL profiler results
-
- Returns
- string
-
-
-
-
-
-
-
-
- | DB\SQL::name |
- ( |
- | ) |
- |
-
-
-
-
Return database name
-
- Returns
- string
-
-
-
-
-
-
-
-
- | DB\SQL::quote |
- ( |
- |
- $val, |
-
-
- |
- |
- |
- $type = \PDO::PARAM_STR |
-
-
- |
- ) |
- | |
-
-
-
-
Quote string
-
- Returns
- string
-
- Parameters
-
-
-
-
-
-
-
-
-
-
-
-
- | DB\SQL::quotekey |
- ( |
- |
- $key | ) |
- |
-
-
-
-
Return quoted identifier name
-
- Returns
- string
-
- Parameters
-
-
-
-
-
-
-
-
-
-
-
-
- | DB\SQL::rollback |
- ( |
- | ) |
- |
-
-
-
-
Rollback SQL transaction
-
- Returns
- bool
-
-
-
-
-
-
-
-
- | DB\SQL::schema |
- ( |
- |
- $table, |
-
-
- |
- |
- |
- $fields = NULL, |
-
-
- |
- |
- |
- $ttl = 0 |
-
-
- |
- ) |
- | |
-
-
-
-
Retrieve schema of SQL table
-
- Returns
- array|FALSE
-
- Parameters
-
-
- | $table | string |
- | $fields | array|string |
- | $ttl | int |
-
-
-
-
-
-
-
-
-
-
-
- | DB\SQL::type |
- ( |
- |
- $val | ) |
- |
-
-
-
-
Map data type of argument to a PDO constant
-
- Returns
- int
-
- Parameters
-
-
-
-
-
-
-
-
-
-
-
-
- | DB\SQL::uuid |
- ( |
- | ) |
- |
-
-
-
-
Return UUID
-
- Returns
- string
-
-
-
-
-
-
-
-
- | DB\SQL::value |
- ( |
- |
- $type, |
-
-
- |
- |
- |
- $val |
-
-
- |
- ) |
- | |
-
-
-
-
Cast value to PHP type
-
- Returns
- scalar
-
- Parameters
-
-
- | $type | string |
- | $val | scalar |
-
-
-
-
-
-
-
-
-
-
-
- | DB\SQL::version |
- ( |
- | ) |
- |
-
-
-
-
Return server version
-
- Returns
- string
-
-
-
-
The documentation for this class was generated from the following file:
-
--
cgit v1.2.3-55-g7522