Home
last modified time | relevance | path

Searched refs:collection (Results 1 – 25 of 31) sorted by relevance

12

/PHP-5.6/ext/oci8/
H A Doci8_collection.c58 collection->collection = NULL; in php_oci_collection_create()
211 collection->tdo, in php_oci_collection_create()
215 (dvoid **) &(collection->collection) in php_oci_collection_create()
339 (OCIColl *) collection->collection in php_oci_collection_append_date()
380 (OCIColl *) collection->collection in php_oci_collection_append_number()
418 (OCIColl *) collection->collection in php_oci_collection_append_string()
495 collection->collection, in php_oci_collection_element_get()
638 (OCIColl *) collection->collection in php_oci_collection_element_set_date()
680 (OCIColl *) collection->collection in php_oci_collection_element_set_number()
719 (OCIColl *) collection->collection in php_oci_collection_element_set_string()
[all …]
H A Dphp_oci8_int.h199 OCIColl *collection; /* collection handle */ member
372 #define PHP_OCI_ZVAL_TO_COLLECTION(zval, collection) \ argument
373 ZEND_FETCH_RESOURCE(collection, php_oci_collection *, &zval, -1, "oci8 collection", le_collection)
392 #define PHP_OCI_ZVAL_TO_COLLECTION_EX(zval, collection) \ argument
393 PHP_OCI_FETCH_RESOURCE_EX(zval, collection, php_oci_collection *, "oci8 collection", le_collection)
448 int php_oci_collection_size(php_oci_collection *collection, sb4 *size TSRMLS_DC);
449 int php_oci_collection_max(php_oci_collection *collection, long *max TSRMLS_DC);
450 int php_oci_collection_trim(php_oci_collection *collection, long trim_size TSRMLS_DC);
454 int php_oci_collection_element_set_null(php_oci_collection *collection, long index TSRMLS_DC);
459 void php_oci_collection_close(php_oci_collection *collection TSRMLS_DC);
[all …]
H A Doci8_interface.c2166 php_oci_collection *collection; local
2179 PHP_OCI_ZVAL_TO_COLLECTION(*tmp, collection);
2181 zend_list_delete(collection->id);
2191 php_oci_collection *collection; local
2211 PHP_OCI_ZVAL_TO_COLLECTION(*tmp, collection);
2225 php_oci_collection *collection; local
2300 php_oci_collection *collection; local
2335 php_oci_collection *collection; local
2363 php_oci_collection *collection; local
2391 php_oci_collection *collection; local
[all …]
H A Doci8.c493 ZEND_ARG_INFO(0, collection)
497 ZEND_ARG_INFO(0, collection)
502 ZEND_ARG_INFO(0, collection)
512 ZEND_ARG_INFO(0, collection)
518 ZEND_ARG_INFO(0, collection)
522 ZEND_ARG_INFO(0, collection)
526 ZEND_ARG_INFO(0, collection)
1519 php_oci_collection *collection = (php_oci_collection *)entry->ptr; in php_oci_collection_list_dtor() local
1520 php_oci_collection_close(collection TSRMLS_CC); in php_oci_collection_list_dtor()
/PHP-5.6/ext/oci8/tests/
H A Dbug32325.phpt2 Bug #32325 (Cannot retrieve collection using OCI8)
23 $collection = oci_new_collection($c, "BUG32325_T");
31 oci_bind_by_name($stmt, ":list", $collection, -1, OCI_B_NTY);
34 var_dump($collection->size());
35 var_dump($collection->getelem(1));
36 var_dump($collection->getelem(2));
H A Dbug42134.phpt2 Bug #42134 (Collection error for invalid collection name)
13 // Test collection creation error for normal connection
22 $collection = oci_new_collection($c, "ABC");
23 if (!$collection) {
29 // Test collection creation error for new connection
38 $collection = oci_new_collection($c, "DEF");
39 if (!$collection) {
45 // Test collection creation error for persistent connection
54 $collection = oci_new_collection($c, "GHI");
55 if (!$collection) {
H A Dcoll_002_func.phpt26 ["collection"]=>
27 resource(%d) of type (oci8 collection)
31 Warning: oci_collection_size(): %d is not a valid oci8 collection resource in %s on line %d
H A Dcoll_006.phpt26 ["collection"]=>
27 resource(%d) of type (oci8 collection)
31 Warning: OCI-Collection::size(): %d is not a valid oci8 collection resource in %s on line %d
H A Dcoll_006_func.phpt26 ["collection"]=>
27 resource(%d) of type (oci8 collection)
31 Warning: oci_collection_size(): %d is not a valid oci8 collection resource in %s on line %d
H A Dcoll_002.phpt26 ["collection"]=>
27 resource(%d) of type (oci8 collection)
31 Warning: OCI-Collection::size(): %d is not a valid oci8 collection resource in %s on line %d
H A Dcoll_001.phpt24 ["collection"]=>
25 resource(%d) of type (oci8 collection)
H A Dcoll_005.phpt24 ["collection"]=>
25 resource(%d) of type (oci8 collection)
H A Dbug44113.phpt2 Bug #44113 (New collection creation can fail with OCI-22303)
28 print "Failed new collection creation on $x\n";
H A Dreflection1.phpt610 Parameter #0 [ <required> $collection ]
617 Parameter #0 [ <required> $collection ]
625 Parameter #0 [ <required> $collection ]
633 Parameter #0 [ <required> $collection ]
650 Parameter #0 [ <required> $collection ]
657 Parameter #0 [ <required> $collection ]
664 Parameter #0 [ <required> $collection ]
998 Parameter #0 [ <required> $collection ]
1014 Parameter #0 [ <required> $collection ]
1022 Parameter #0 [ <required> $collection ]
[all …]
H A Dcoll_003.phpt2 collection methods
H A Dcoll_003_func.phpt2 collection methods
H A Dcoll_007.phpt2 collection methods
H A Dcoll_019.phpt2 Test collection Oracle error handling collections and numbers (2)
/PHP-5.6/ext/simplexml/tests/
H A Dbug41582.phpt9 <collection></collection>');
19 <collection><movie><characters><character><name>Miss Coder</name></character></characters></movie><…
/PHP-5.6/ext/xsl/tests/
H A Dbug53965.phpt13 $xml->load($base . DIRECTORY_SEPARATOR . 'collection.xml');
16 $xsl->load($base . DIRECTORY_SEPARATOR . 'collection.xsl');
24 Hey! Welcome to Nicolas Eliaszewicz's sweet CD collection!
/PHP-5.6/ext/xsl/tests/53965/
H A Dcollection.xsl7 <xsl:template match="collection"> matchedTemplate
8 Hey! Welcome to <xsl:value-of select="$owner"/>'s sweet CD collection!
/PHP-5.6/Zend/tests/
H A Dbug32674.phpt5 class collection implements Iterator {
48 $col = new collection();
H A Dgc_012.phpt2 GC 012: collection of many loops at once
H A Dgc_023.phpt2 GC 023: Root buffer overflow (automatic collection)
/PHP-5.6/ext/spl/tests/
H A Dbug65967.phpt2 Bug #65967: SplObjectStorage contains corrupt member variables after garbage collection

Completed in 59 milliseconds

12