From b25e37319b6969b6a5119dd267fbd88c22e3b042 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 17 May 2014 17:19:42 +0200 Subject: php-pecl-*: add Reflection file --- REFLECTION | 730 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 730 insertions(+) create mode 100644 REFLECTION diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..6cef348 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,730 @@ +Extension [ extension #130 SQLite version 2.0-dev ] { + + - Dependencies { + Dependency [ spl (Required) ] + Dependency [ session (Required) ] + Dependency [ pdo (Required) ] + } + + - INI { + Entry [ sqlite.assoc_case ] + Current = '0' + } + } + + - Constants [31] { + Constant [ integer SQLITE_BOTH ] { 3 } + Constant [ integer SQLITE_NUM ] { 2 } + Constant [ integer SQLITE_ASSOC ] { 1 } + Constant [ integer SQLITE_OK ] { 0 } + Constant [ integer SQLITE_ERROR ] { 1 } + Constant [ integer SQLITE_INTERNAL ] { 2 } + Constant [ integer SQLITE_PERM ] { 3 } + Constant [ integer SQLITE_ABORT ] { 4 } + Constant [ integer SQLITE_BUSY ] { 5 } + Constant [ integer SQLITE_LOCKED ] { 6 } + Constant [ integer SQLITE_NOMEM ] { 7 } + Constant [ integer SQLITE_READONLY ] { 8 } + Constant [ integer SQLITE_INTERRUPT ] { 9 } + Constant [ integer SQLITE_IOERR ] { 10 } + Constant [ integer SQLITE_CORRUPT ] { 11 } + Constant [ integer SQLITE_NOTFOUND ] { 12 } + Constant [ integer SQLITE_FULL ] { 13 } + Constant [ integer SQLITE_CANTOPEN ] { 14 } + Constant [ integer SQLITE_PROTOCOL ] { 15 } + Constant [ integer SQLITE_EMPTY ] { 16 } + Constant [ integer SQLITE_SCHEMA ] { 17 } + Constant [ integer SQLITE_TOOBIG ] { 18 } + Constant [ integer SQLITE_CONSTRAINT ] { 19 } + Constant [ integer SQLITE_MISMATCH ] { 20 } + Constant [ integer SQLITE_MISUSE ] { 21 } + Constant [ integer SQLITE_NOLFS ] { 22 } + Constant [ integer SQLITE_AUTH ] { 23 } + Constant [ integer SQLITE_NOTADB ] { 26 } + Constant [ integer SQLITE_FORMAT ] { 24 } + Constant [ integer SQLITE_ROW ] { 100 } + Constant [ integer SQLITE_DONE ] { 101 } + } + + - Functions { + Function [ function sqlite_open ] { + + - Parameters [3] { + Parameter #0 [ $filename ] + Parameter #1 [ $mode ] + Parameter #2 [ &$error_message ] + } + } + Function [ function sqlite_popen ] { + + - Parameters [3] { + Parameter #0 [ $filename ] + Parameter #1 [ $mode ] + Parameter #2 [ &$error_message ] + } + } + Function [ function sqlite_close ] { + + - Parameters [1] { + Parameter #0 [ $db ] + } + } + Function [ function sqlite_query ] { + + - Parameters [4] { + Parameter #0 [ $query ] + Parameter #1 [ $db ] + Parameter #2 [ $result_type ] + Parameter #3 [ &$error_message ] + } + } + Function [ function sqlite_exec ] { + + - Parameters [3] { + Parameter #0 [ $query ] + Parameter #1 [ $db ] + Parameter #2 [ &$error_message ] + } + } + Function [ function sqlite_array_query ] { + + - Parameters [4] { + Parameter #0 [ $db ] + Parameter #1 [ $query ] + Parameter #2 [ $result_type ] + Parameter #3 [ $decode_binary ] + } + } + Function [ function sqlite_single_query ] { + + - Parameters [4] { + Parameter #0 [ $db ] + Parameter #1 [ $query ] + Parameter #2 [ $first_row_only ] + Parameter #3 [ $decode_binary ] + } + } + Function [ function sqlite_fetch_array ] { + + - Parameters [3] { + Parameter #0 [ $result ] + Parameter #1 [ $result_type ] + Parameter #2 [ $decode_binary ] + } + } + Function [ function sqlite_fetch_object ] { + + - Parameters [4] { + Parameter #0 [ $result ] + Parameter #1 [ $class_name ] + Parameter #2 [ $ctor_params ] + Parameter #3 [ $decode_binary ] + } + } + Function [ function sqlite_fetch_single ] { + + - Parameters [2] { + Parameter #0 [ $result ] + Parameter #1 [ $decode_binary ] + } + } + Function [ function sqlite_fetch_string ] { + + - Parameters [2] { + Parameter #0 [ $result ] + Parameter #1 [ $decode_binary ] + } + } + Function [ function sqlite_fetch_all ] { + + - Parameters [3] { + Parameter #0 [ $result ] + Parameter #1 [ $result_type ] + Parameter #2 [ $decode_binary ] + } + } + Function [ function sqlite_current ] { + + - Parameters [3] { + Parameter #0 [ $result ] + Parameter #1 [ $result_type ] + Parameter #2 [ $decode_binary ] + } + } + Function [ function sqlite_column ] { + + - Parameters [3] { + Parameter #0 [ $result ] + Parameter #1 [ $index_or_name ] + Parameter #2 [ $decode_binary ] + } + } + Function [ function sqlite_libversion ] { + + - Parameters [0] { + } + } + Function [ function sqlite_libencoding ] { + + - Parameters [0] { + } + } + Function [ function sqlite_changes ] { + + - Parameters [1] { + Parameter #0 [ $db ] + } + } + Function [ function sqlite_last_insert_rowid ] { + + - Parameters [1] { + Parameter #0 [ $db ] + } + } + Function [ function sqlite_num_rows ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_num_fields ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_field_name ] { + + - Parameters [2] { + Parameter #0 [ $result ] + Parameter #1 [ $field_index ] + } + } + Function [ function sqlite_seek ] { + + - Parameters [2] { + Parameter #0 [ $result ] + Parameter #1 [ $row ] + } + } + Function [ function sqlite_rewind ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_next ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_prev ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_valid ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_has_more ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_has_prev ] { + + - Parameters [1] { + Parameter #0 [ $result ] + } + } + Function [ function sqlite_escape_string ] { + + - Parameters [1] { + Parameter #0 [ $item ] + } + } + Function [ function sqlite_busy_timeout ] { + + - Parameters [2] { + Parameter #0 [ $db ] + Parameter #1 [ $ms ] + } + } + Function [ function sqlite_last_error ] { + + - Parameters [1] { + Parameter #0 [ $db ] + } + } + Function [ function sqlite_error_string ] { + + - Parameters [1] { + Parameter #0 [ $error_code ] + } + } + Function [ function sqlite_unbuffered_query ] { + + - Parameters [4] { + Parameter #0 [ $query ] + Parameter #1 [ $db ] + Parameter #2 [ $result_type ] + Parameter #3 [ &$error_message ] + } + } + Function [ function sqlite_create_aggregate ] { + + - Parameters [5] { + Parameter #0 [ $db ] + Parameter #1 [ $funcname ] + Parameter #2 [ $step_func ] + Parameter #3 [ $finalize_func ] + Parameter #4 [ $num_args ] + } + } + Function [ function sqlite_create_function ] { + + - Parameters [4] { + Parameter #0 [ $db ] + Parameter #1 [ $funcname ] + Parameter #2 [ $callback ] + Parameter #3 [ $num_args ] + } + } + Function [ function sqlite_factory ] { + + - Parameters [3] { + Parameter #0 [ $filename ] + Parameter #1 [ $mode ] + Parameter #2 [ &$error_message ] + } + } + Function [ function sqlite_udf_encode_binary ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + Function [ function sqlite_udf_decode_binary ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + Function [ function sqlite_fetch_column_types ] { + + - Parameters [3] { + Parameter #0 [ $table_name ] + Parameter #1 [ $db ] + Parameter #2 [ $result_type ] + } + } + } + + - Classes [4] { + Class [ class SQLiteDatabase ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [13] { + Method [ final public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $filename ] + Parameter #1 [ $mode ] + Parameter #2 [ &$error_message ] + } + } + + Method [ public method query ] { + + - Parameters [3] { + Parameter #0 [ $query ] + Parameter #1 [ $result_type ] + Parameter #2 [ &$error_message ] + } + } + + Method [ public method queryExec ] { + + - Parameters [2] { + Parameter #0 [ $query ] + Parameter #1 [ &$error_message ] + } + } + + Method [ public method arrayQuery ] { + + - Parameters [3] { + Parameter #0 [ $query ] + Parameter #1 [ $result_type ] + Parameter #2 [ $decode_binary ] + } + } + + Method [ public method singleQuery ] { + + - Parameters [3] { + Parameter #0 [ $query ] + Parameter #1 [ $first_row_only ] + Parameter #2 [ $decode_binary ] + } + } + + Method [ public method unbufferedQuery ] { + + - Parameters [3] { + Parameter #0 [ $query ] + Parameter #1 [ $result_type ] + Parameter #2 [ &$error_message ] + } + } + + Method [ public method lastInsertRowid ] { + + - Parameters [0] { + } + } + + Method [ public method changes ] { + + - Parameters [0] { + } + } + + Method [ public method createAggregate ] { + + - Parameters [4] { + Parameter #0 [ $funcname ] + Parameter #1 [ $step_func ] + Parameter #2 [ $finalize_func ] + Parameter #3 [ $num_args ] + } + } + + Method [ public method createFunction ] { + + - Parameters [3] { + Parameter #0 [ $funcname ] + Parameter #1 [ $callback ] + Parameter #2 [ $num_args ] + } + } + + Method [ public method busyTimeout ] { + + - Parameters [1] { + Parameter #0 [ $ms ] + } + } + + Method [ public method lastError ] { + + - Parameters [0] { + } + } + + Method [ public method fetchColumnTypes ] { + + - Parameters [2] { + Parameter #0 [ $table_name ] + Parameter #1 [ $result_type ] + } + } + } + } + + Class [ final class SQLiteResult implements Iterator, Traversable, Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [17] { + Method [ public method fetch ] { + + - Parameters [2] { + Parameter #0 [ $result_type ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method fetchObject ] { + + - Parameters [3] { + Parameter #0 [ $class_name ] + Parameter #1 [ $ctor_params ] + Parameter #2 [ $decode_binary ] + } + } + + Method [ public method fetchSingle ] { + + - Parameters [1] { + Parameter #0 [ $decode_binary ] + } + } + + Method [ public method fetchAll ] { + + - Parameters [2] { + Parameter #0 [ $result_type ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method column ] { + + - Parameters [2] { + Parameter #0 [ $index_or_name ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method numFields ] { + + - Parameters [0] { + } + } + + Method [ public method fieldName ] { + + - Parameters [1] { + Parameter #0 [ $field_index ] + } + } + + Method [ public method current ] { + + - Parameters [2] { + Parameter #0 [ $result_type ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method key ] { + + - Parameters [0] { + } + } + + Method [ public method next ] { + + - Parameters [0] { + } + } + + Method [ public method valid ] { + + - Parameters [0] { + } + } + + Method [ public method rewind ] { + + - Parameters [0] { + } + } + + Method [ public method count ] { + + - Parameters [0] { + } + } + + Method [ public method prev ] { + + - Parameters [0] { + } + } + + Method [ public method hasPrev ] { + + - Parameters [0] { + } + } + + Method [ public method numRows ] { + + - Parameters [0] { + } + } + + Method [ public method seek ] { + + - Parameters [1] { + Parameter #0 [ $row ] + } + } + } + } + + Class [ final class SQLiteUnbuffered ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [10] { + Method [ public method fetch ] { + + - Parameters [2] { + Parameter #0 [ $result_type ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method fetchObject ] { + + - Parameters [3] { + Parameter #0 [ $class_name ] + Parameter #1 [ $ctor_params ] + Parameter #2 [ $decode_binary ] + } + } + + Method [ public method fetchSingle ] { + + - Parameters [1] { + Parameter #0 [ $decode_binary ] + } + } + + Method [ public method fetchAll ] { + + - Parameters [2] { + Parameter #0 [ $result_type ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method column ] { + + - Parameters [2] { + Parameter #0 [ $index_or_name ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method numFields ] { + + - Parameters [0] { + } + } + + Method [ public method fieldName ] { + + - Parameters [1] { + Parameter #0 [ $field_index ] + } + } + + Method [ public method current ] { + + - Parameters [2] { + Parameter #0 [ $result_type ] + Parameter #1 [ $decode_binary ] + } + } + + Method [ public method next ] { + + - Parameters [0] { + } + } + + Method [ public method valid ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class SQLiteException extends RuntimeException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + } +} + -- cgit