This function appears to work with PL/SQL associative arrays (index-by tables) but I was unable to get it to work with PL/SQL varrays
(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL OCI8 >= 1.2.0)
oci_bind_array_by_name — Lie un tableau PHP à un paramètre de tableau Oracle PL/SQL
$statement
,$param
,&$var
,$max_array_length
,$max_item_length
= -1,$type
= SQLT_AFC
Lie un tableau PHP var
à un marqueur
Oracle param
, qui pointe vers un tableau PL/SQL.
Il peut être utilisé pour l'entrée ou la sortie, suivant la configuration à l'exécution.
statement
Un identifiant de requête OCI valide.
param
Le marqueur Oracle.
var
Un tableau.
max_array_length
Spécifie la longueur maximale des tableaux d'entrées et de résultats.
max_item_length
Définit la longueur maximale pour les éléments du tableau.
Si max_item_length
n'est pas fourni
ou s'il vaut -1, oci_bind_array_by_name() cherchera
l'élément le plus long dans le tableau d'entrée et l'utilisera en tant que
longueur maximale.
type
Devrait être utilisé pour définir le type des éléments PL/SQL. Voir la liste des types disponibles ci-dessous :
SQLT_NUM
- pour les tableaux de NUMBER.
SQLT_INT
- pour les tableaux INTEGER (Note : INTEGER
c'est actuellement un synonyme pour NUMBER(38), mais le type
SQLT_NUM
ne fonctionnera pas dans ce cas même s'ils sont synonymes).
SQLT_FLT
- pour les tableaux de FLOAT.
SQLT_AFC
- pour les tableaux de CHAR.
SQLT_CHR
- pour les tableaux de VARCHAR2.
SQLT_VCS
- pour les tableaux de VARCHAR.
SQLT_AVC
- pour les tableaux de CHARZ.
SQLT_STR
- pour les tableaux de STRING.
SQLT_LVC
- pour les tableaux de LONG VARCHAR.
SQLT_ODT
- pour les tableaux de DATE.
Exemple #1 Exemple avec oci_bind_array_by_name()
<?php
$conn = oci_connect("hr", "hrpwd", "localhost/XE");
if (!$conn) {
$m = oci_error();
trigger_error(htmlentities($m['message']), E_USER_ERROR);
}
$create = "CREATE TABLE bind_example(name VARCHAR(20))";
$stid = oci_parse($conn, $create);
oci_execute($stid);
$create_pkg = "
CREATE OR REPLACE PACKAGE ARRAYBINDPKG1 AS
TYPE ARRTYPE IS TABLE OF VARCHAR(20) INDEX BY BINARY_INTEGER;
PROCEDURE iobind(c1 IN OUT ARRTYPE);
END ARRAYBINDPKG1;";
$stid = oci_parse($conn, $create_pkg);
oci_execute($stid);
$create_pkg_body = "
CREATE OR REPLACE PACKAGE BODY ARRAYBINDPKG1 AS
CURSOR CUR IS SELECT name FROM bind_example;
PROCEDURE iobind(c1 IN OUT ARRTYPE) IS
BEGIN
-- Bulk Insert
FORALL i IN INDICES OF c1
INSERT INTO bind_example VALUES (c1(i));
-- Fetch and reverse;
IF NOT CUR%ISOPEN THEN
OPEN CUR;
END IF;
FOR i IN REVERSE 1..5 LOOP
FETCH CUR INTO c1(i);
IF CUR%NOTFOUND THEN
CLOSE CUR;
EXIT;
END IF;
END LOOP;
END iobind;
END ARRAYBINDPKG1;";
$stid = oci_parse($conn, $create_pkg_body);
oci_execute($stid);
$stid = oci_parse($conn, "BEGIN arraybindpkg1.iobind(:c1); END;");
$array = array("one", "two", "three", "four", "five");
oci_bind_array_by_name($stid, ":c1", $array, 5, -1, SQLT_CHR);
oci_execute($stid);
var_dump($array);
?>
This function appears to work with PL/SQL associative arrays (index-by tables) but I was unable to get it to work with PL/SQL varrays
We were able to get the example included for the "OCI_BIND_ARRAY_BY_NAME" to work. However, the example is NOT actually binding with a PL/SQL array of any type. It is writing data to an Oracle table named "bind_example". Notice how this table is created. The table does NOT have an array type as one of its fields. Since this is the case, there cannot be any binding to a PL/SQL array because at least one field in the table must be either a VARRAY, NESTED TABLE or ASSOCIATIVE ARRAY data type. We searched the Internet and could not find any examples that actually read from a PL/SQL array type. We were able to get data from a PL/SQL VARRAY data type, but only by using a SELECT statement.