ora_bind
Opis
bool ora_bind ( resource cursor, string phpvar, string sqlparam, int length [, int type] )Binds the named PHP variable with a SQL parameter.
ora_bind() must be called after ora_parse() and before ora_exec(). Input values can be given by assignment to the bound PHP variables, after calling ora_exec() the bound PHP variables contain the output values if available.
Parametry
cursorAn Oracle cursor, opened with ora_open().
phpvarThe PHP variable to be bound.
sqlparamThe SQL parameter. Must be in the form :name.
lengthtypeDefines the type of the parameter. It defaults to ORA_BIND_INOUT. Possible values are listed below:
Zwracane wartości
Zwraca TRUE w przypadku sukcesu, FALSE w przypadku porażki. Details about the error can be retrieved using the ora_error() and ora_errorcode() functions.
Przykłady
Notatki
When using oci8 as a replacement for the deprecated oracle extension, consider using:
| oci_bind_by_name() |
| oci_bind_array_by_name() |
| Poprzedni | Spis treści | Następny |
| Oracle Functions [deprecated] | Początek rozdziału< |