ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:getcustomactualtypes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
v5:reference:connection:getcustomactualtypes [2021/01/05 04:33] mnewnhamv5:reference:connection:getcustomactualtypes [2021/01/18 03:59] (current) – removed mnewnham
Line 1: Line 1:
-====== getCustomActualTypes ====== 
-~~NOTOC~~ 
-<WRAP right box> 
-**From Version 5.22**\\ 
-==See Also== 
-[[v5:reference:connection:setcustomactualtype|setCustomActualType]]\\ 
-== Syntax == 
-  array getCustomActualTypes() 
  
-</WRAP> 
-==== Description ==== 
-The function ''getCustomActualTypes()'' returns an array of defined custom actual types 
- 
------------------------------------------- 
-==== Example ===== 
- 
-<code php> 
- 
-print_r($db->getCustomActualTypes()); 
- 
-/* 
-* Prints  
-Array 
-( 
-    [P] => Array 
-        ( 
-            [actual] => POINT 
-            [handler] =>  
-        ) 
- 
-    [C] => Array 
-        ( 
-            [actual] => CHAR 
-            [handler] => Closure Object 
-                ( 
-                    [parameter] => Array 
-                        ( 
-                            [$val] => <required> 
-                        ) 
- 
-                ) 
- 
-        ) 
- 
-) 
-*/ 
-</code>