summaryrefslogtreecommitdiff
path: root/framework/3rdParty
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-11-09 22:12:14 +0000
committerctrlaltca@gmail.com <>2011-11-09 22:12:14 +0000
commit51aa293bdd77fa6a7bc65341c962655ab7ef52e7 (patch)
tree6638d1ce920df99d38f91c9a9b9c43f9381f8d95 /framework/3rdParty
parent5380a870b799098d7900b1098b4e9930ba71f10e (diff)
fix #370:
- deprecated TSqliteCache, use TDbCache instead - reworked the dataaccess code of demos/blog - other smalll fixes around
Diffstat (limited to 'framework/3rdParty')
-rw-r--r--framework/3rdParty/PhpShell/PHP/Shell/Extensions/Prototypes.php228
1 files changed, 0 insertions, 228 deletions
diff --git a/framework/3rdParty/PhpShell/PHP/Shell/Extensions/Prototypes.php b/framework/3rdParty/PhpShell/PHP/Shell/Extensions/Prototypes.php
index 6e228688..618074e5 100644
--- a/framework/3rdParty/PhpShell/PHP/Shell/Extensions/Prototypes.php
+++ b/framework/3rdParty/PhpShell/PHP/Shell/Extensions/Prototypes.php
@@ -2529,234 +2529,6 @@ class PHP_ShellPrototypes {
'params' => 'int id, int variable_key',
'description' => 'Removes variable from shared memory',
),
- 'sqlite_popen' =>
- array (
- 'return' => 'resource',
- 'params' => 'string filename [, int mode [, string &error_message]]',
- 'description' => 'Opens a persistent handle to a SQLite database. Will create the database if it does not exist.',
- ),
- 'sqlite_open' =>
- array (
- 'return' => 'resource',
- 'params' => 'string filename [, int mode [, string &error_message]]',
- 'description' => 'Opens a SQLite database. Will create the database if it does not exist.',
- ),
- 'sqlite_factory' =>
- array (
- 'return' => 'object',
- 'params' => 'string filename [, int mode [, string &error_message]]',
- 'description' => 'Opens a SQLite database and creates an object for it. Will create the database if it does not exist.',
- ),
- 'sqlite_busy_timeout' =>
- array (
- 'return' => 'void',
- 'params' => 'resource db, int ms',
- 'description' => 'Set busy timeout duration. If ms <= 0, all busy handlers are disabled.',
- ),
- 'sqlite_close' =>
- array (
- 'return' => 'void',
- 'params' => 'resource db',
- 'description' => 'Closes an open sqlite database.',
- ),
- 'sqlite_unbuffered_query' =>
- array (
- 'return' => 'resource',
- 'params' => 'string query, resource db [ , int result_type [, string &error_message]]',
- 'description' => 'Executes a query that does not prefetch and buffer all data.',
- ),
- 'sqlite_fetch_column_types' =>
- array (
- 'return' => 'resource',
- 'params' => 'string table_name, resource db [, int result_type]',
- 'description' => 'Return an array of column types from a particular table.',
- ),
- 'sqlite_query' =>
- array (
- 'return' => 'resource',
- 'params' => 'string query, resource db [, int result_type [, string &error_message]]',
- 'description' => 'Executes a query against a given database and returns a result handle.',
- ),
- 'sqlite_exec' =>
- array (
- 'return' => 'boolean',
- 'params' => 'string query, resource db[, string &error_message]',
- 'description' => 'Executes a result-less query against a given database',
- ),
- 'sqlite_fetch_all' =>
- array (
- 'return' => 'array',
- 'params' => 'resource result [, int result_type [, bool decode_binary]]',
- 'description' => 'Fetches all rows from a result set as an array of arrays.',
- ),
- 'sqlite_fetch_array' =>
- array (
- 'return' => 'array',
- 'params' => 'resource result [, int result_type [, bool decode_binary]]',
- 'description' => 'Fetches the next row from a result set as an array.',
- ),
- 'sqlite_fetch_object' =>
- array (
- 'return' => 'object',
- 'params' => 'resource result [, string class_name [, NULL|array ctor_params [, bool decode_binary]]]',
- 'description' => 'Fetches the next row from a result set as an object.',
- ),
- 'sqlite_array_query' =>
- array (
- 'return' => 'array',
- 'params' => 'resource db, string query [ , int result_type [, bool decode_binary]]',
- 'description' => 'Executes a query against a given database and returns an array of arrays.',
- ),
- 'sqlite_single_query' =>
- array (
- 'return' => 'array',
- 'params' => 'resource db, string query [, bool first_row_only [, bool decode_binary]]',
- 'description' => 'Executes a query and returns either an array for one single column or the value of the first row.',
- ),
- 'sqlite_fetch_single' =>
- array (
- 'return' => 'string',
- 'params' => 'resource result [, bool decode_binary]',
- 'description' => 'Fetches the first column of a result set as a string.',
- ),
- 'sqlite_current' =>
- array (
- 'return' => 'array',
- 'params' => 'resource result [, int result_type [, bool decode_binary]]',
- 'description' => 'Fetches the current row from a result set as an array.',
- ),
- 'sqlite_column' =>
- array (
- 'return' => 'mixed',
- 'params' => 'resource result, mixed index_or_name [, bool decode_binary]',
- 'description' => 'Fetches a column from the current row of a result set.',
- ),
- 'sqlite_libversion' =>
- array (
- 'return' => 'string',
- 'params' => '',
- 'description' => 'Returns the version of the linked SQLite library.',
- ),
- 'sqlite_libencoding' =>
- array (
- 'return' => 'string',
- 'params' => '',
- 'description' => 'Returns the encoding (iso8859 or UTF-8) of the linked SQLite library.',
- ),
- 'sqlite_changes' =>
- array (
- 'return' => 'int',
- 'params' => 'resource db',
- 'description' => 'Returns the number of rows that were changed by the most recent SQL statement.',
- ),
- 'sqlite_last_insert_rowid' =>
- array (
- 'return' => 'int',
- 'params' => 'resource db',
- 'description' => 'Returns the rowid of the most recently inserted row.',
- ),
- 'sqlite_num_rows' =>
- array (
- 'return' => 'int',
- 'params' => 'resource result',
- 'description' => 'Returns the number of rows in a buffered result set.',
- ),
- 'sqlite_valid' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource result',
- 'description' => 'Returns whether more rows are available.',
- ),
- 'sqlite_has_prev' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource result',
- 'description' => '* Returns whether a previous row is available.',
- ),
- 'sqlite_num_fields' =>
- array (
- 'return' => 'int',
- 'params' => 'resource result',
- 'description' => 'Returns the number of fields in a result set.',
- ),
- 'sqlite_field_name' =>
- array (
- 'return' => 'string',
- 'params' => 'resource result, int field_index',
- 'description' => 'Returns the name of a particular field of a result set.',
- ),
- 'sqlite_seek' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource result, int row',
- 'description' => 'Seek to a particular row number of a buffered result set.',
- ),
- 'sqlite_rewind' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource result',
- 'description' => 'Seek to the first row number of a buffered result set.',
- ),
- 'sqlite_next' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource result',
- 'description' => 'Seek to the next row number of a result set.',
- ),
- 'sqlite_key' =>
- array (
- 'return' => 'int',
- 'params' => 'resource result',
- 'description' => 'Return the current row index of a buffered result.',
- ),
- 'sqlite_prev' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource result',
- 'description' => '* Seek to the previous row number of a result set.',
- ),
- 'sqlite_escape_string' =>
- array (
- 'return' => 'string',
- 'params' => 'string item',
- 'description' => 'Escapes a string for use as a query parameter.',
- ),
- 'sqlite_last_error' =>
- array (
- 'return' => 'int',
- 'params' => 'resource db',
- 'description' => 'Returns the error code of the last error for a database.',
- ),
- 'sqlite_error_string' =>
- array (
- 'return' => 'string',
- 'params' => 'int error_code',
- 'description' => 'Returns the textual description of an error code.',
- ),
- 'sqlite_create_aggregate' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource db, string funcname, mixed step_func, mixed finalize_func[, long num_args]',
- 'description' => 'Registers an aggregate function for queries.',
- ),
- 'sqlite_create_function' =>
- array (
- 'return' => 'bool',
- 'params' => 'resource db, string funcname, mixed callback[, long num_args]',
- 'description' => 'Registers a "regular" function for queries.',
- ),
- 'sqlite_udf_encode_binary' =>
- array (
- 'return' => 'string',
- 'params' => 'string data',
- 'description' => 'Apply binary encoding (if required) to a string to return from an UDF.',
- ),
- 'sqlite_udf_decode_binary' =>
- array (
- 'return' => 'string',
- 'params' => 'string data',
- 'description' => 'Decode binary encoding on a string parameter passed to an UDF.',
- ),
'socket_select' =>
array (
'return' => 'int',