Lines Matching refs:OCILob

31 function oci_free_descriptor(OCILob $lob): bool {}
37 function ocifreedesc(OCILob $lob): bool {}
39 function oci_lob_save(OCILob $lob, string $data, int $offset = 0): bool {}
45 function ocisavelob(OCILob $lob, string $data, int $offset = 0): bool {}
47 function oci_lob_import(OCILob $lob, string $filename): bool {}
53 function ocisavelobfile(OCILob $lob, string $filename): bool {}
55 function oci_lob_load(OCILob $lob): string|false {}
61 function ociloadlob(OCILob $lob): string|false {}
63 function oci_lob_read(OCILob $lob, int $length): string|false {}
65 function oci_lob_eof(OCILob $lob): bool {}
67 function oci_lob_tell(OCILob $lob): int|false {}
69 function oci_lob_rewind(OCILob $lob): bool {}
71 function oci_lob_seek(OCILob $lob, int $offset, int $whence = OCI_SEEK_SET): bool {}
73 function oci_lob_size(OCILob $lob): int|false {}
75 function oci_lob_write(OCILob $lob, string $data, ?int $length = null): int|false {}
77 function oci_lob_append(OCILob $to, OCILob $from): bool {}
79 function oci_lob_truncate(OCILob $lob, int $length = 0): bool {}
81 function oci_lob_erase(OCILob $lob, ?int $offset = null, ?int $length = null): int|false {}
83 function oci_lob_flush(OCILob $lob, int $flag = 0): bool {}
85 function ocisetbufferinglob(OCILob $lob, bool $mode): bool {}
87 function ocigetbufferinglob(OCILob $lob): bool {}
89 function oci_lob_copy(OCILob $to, OCILob $from, ?int $length = null): bool {}
91 function oci_lob_is_equal(OCILob $lob1, OCILob $lob2): bool {}
93 function oci_lob_export(OCILob $lob, string $filename, ?int $offset = null, ?int $length = null): b…
99 function ociwritelobtofile(OCILob $lob, string $filename, ?int $offset = null, ?int $length = null)…
102 function oci_new_descriptor($connection, int $type = OCI_DTYPE_LOB): ?OCILob {}
109 function ocinewdescriptor($connection, int $type = OCI_DTYPE_LOB): ?OCILob {}
550 class OCILob { class
621 public function append(OCILob $from): bool {}