Lines Matching refs:return_value

789 static int oci_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_value) /* {{{ */  in oci_stmt_col_meta()  argument
805 array_init(return_value); in oci_stmt_col_meta()
835 add_assoc_string(return_value, "oci:decl_type", "TIMESTAMP"); in oci_stmt_col_meta()
836 add_assoc_string(return_value, "native_type", "TIMESTAMP"); in oci_stmt_col_meta()
841 add_assoc_string(return_value, "oci:decl_type", "TIMESTAMP WITH TIMEZONE"); in oci_stmt_col_meta()
842 add_assoc_string(return_value, "native_type", "TIMESTAMP WITH TIMEZONE"); in oci_stmt_col_meta()
847 add_assoc_string(return_value, "oci:decl_type", "TIMESTAMP WITH LOCAL TIMEZONE"); in oci_stmt_col_meta()
848 add_assoc_string(return_value, "native_type", "TIMESTAMP WITH LOCAL TIMEZONE"); in oci_stmt_col_meta()
853 add_assoc_string(return_value, "oci:decl_type", "INTERVAL YEAR TO MONTH"); in oci_stmt_col_meta()
854 add_assoc_string(return_value, "native_type", "INTERVAL YEAR TO MONTH"); in oci_stmt_col_meta()
859 add_assoc_string(return_value, "oci:decl_type", "INTERVAL DAY TO SECOND"); in oci_stmt_col_meta()
860 add_assoc_string(return_value, "native_type", "INTERVAL DAY TO SECOND"); in oci_stmt_col_meta()
864 add_assoc_string(return_value, "oci:decl_type", "DATE"); in oci_stmt_col_meta()
865 add_assoc_string(return_value, "native_type", "DATE"); in oci_stmt_col_meta()
871 add_assoc_string(return_value, "oci:decl_type", "FLOAT"); in oci_stmt_col_meta()
872 add_assoc_string(return_value, "native_type", "FLOAT"); in oci_stmt_col_meta()
874 add_assoc_string(return_value, "oci:decl_type", "NUMBER"); in oci_stmt_col_meta()
875 add_assoc_string(return_value, "native_type", "NUMBER"); in oci_stmt_col_meta()
879 add_assoc_string(return_value, "oci:decl_type", "LONG"); in oci_stmt_col_meta()
880 add_assoc_string(return_value, "native_type", "LONG"); in oci_stmt_col_meta()
883 add_assoc_string(return_value, "oci:decl_type", "RAW"); in oci_stmt_col_meta()
884 add_assoc_string(return_value, "native_type", "RAW"); in oci_stmt_col_meta()
887 add_assoc_string(return_value, "oci:decl_type", "LONG RAW"); in oci_stmt_col_meta()
888 add_assoc_string(return_value, "native_type", "LONG RAW"); in oci_stmt_col_meta()
893 add_assoc_string(return_value, "oci:decl_type", "NVARCHAR2"); in oci_stmt_col_meta()
894 add_assoc_string(return_value, "native_type", "NVARCHAR2"); in oci_stmt_col_meta()
896 add_assoc_string(return_value, "oci:decl_type", "VARCHAR2"); in oci_stmt_col_meta()
897 add_assoc_string(return_value, "native_type", "VARCHAR2"); in oci_stmt_col_meta()
902 add_assoc_string(return_value, "oci:decl_type", "NCHAR"); in oci_stmt_col_meta()
903 add_assoc_string(return_value, "native_type", "NCHAR"); in oci_stmt_col_meta()
905 add_assoc_string(return_value, "oci:decl_type", "CHAR"); in oci_stmt_col_meta()
906 add_assoc_string(return_value, "native_type", "CHAR"); in oci_stmt_col_meta()
910 add_assoc_string(return_value, "oci:decl_type", "BLOB"); in oci_stmt_col_meta()
912 add_assoc_string(return_value, "native_type", "BLOB"); in oci_stmt_col_meta()
916 add_assoc_string(return_value, "oci:decl_type", "NCLOB"); in oci_stmt_col_meta()
917 add_assoc_string(return_value, "native_type", "NCLOB"); in oci_stmt_col_meta()
919 add_assoc_string(return_value, "oci:decl_type", "CLOB"); in oci_stmt_col_meta()
920 add_assoc_string(return_value, "native_type", "CLOB"); in oci_stmt_col_meta()
925 add_assoc_string(return_value, "oci:decl_type", "BFILE"); in oci_stmt_col_meta()
927 add_assoc_string(return_value, "native_type", "BFILE"); in oci_stmt_col_meta()
930 add_assoc_string(return_value, "oci:decl_type", "ROWID"); in oci_stmt_col_meta()
931 add_assoc_string(return_value, "native_type", "ROWID"); in oci_stmt_col_meta()
935 add_assoc_string(return_value, "oci:decl_type", "BINARY_FLOAT"); in oci_stmt_col_meta()
936 add_assoc_string(return_value, "native_type", "BINARY_FLOAT"); in oci_stmt_col_meta()
940 add_assoc_string(return_value, "oci:decl_type", "BINARY_DOUBLE"); in oci_stmt_col_meta()
941 add_assoc_string(return_value, "native_type", "BINARY_DOUBLE"); in oci_stmt_col_meta()
944 add_assoc_long(return_value, "oci:decl_type", dtype); in oci_stmt_col_meta()
945 add_assoc_string(return_value, "native_type", "UNKNOWN"); in oci_stmt_col_meta()
949 add_assoc_long(return_value, "oci:decl_type", 0); in oci_stmt_col_meta()
950 add_assoc_string(return_value, "native_type", "NULL"); in oci_stmt_col_meta()
956 add_assoc_long(return_value, "pdo_type", PDO_PARAM_LOB); in oci_stmt_col_meta()
959 add_assoc_long(return_value, "pdo_type", PDO_PARAM_STR); in oci_stmt_col_meta()
978 add_assoc_long(return_value, "pdo_type", PDO_PARAM_LOB); in oci_stmt_col_meta()
981 add_assoc_long(return_value, "pdo_type", PDO_PARAM_STR); in oci_stmt_col_meta()
984 add_assoc_long(return_value, "scale", scale); in oci_stmt_col_meta()
985 add_assoc_zval(return_value, "flags", &flags); in oci_stmt_col_meta()