PHP : Function Reference : ODBC Functions (Unified) : odbc_gettypeinfo
Examples ( Source code ) » odbc_gettypeinfo
Example: display all data types
<?php
$Link_ID = odbc_connect("DSN", "user", "pass");
$result = odbc_gettypeinfo($Link_ID);
odbc_result_all($result);
?>
andrea dot galli
Example: display all data types
<?php
$Link_ID = odbc_connect("DSN", "user", "pass");
$result = odbc_gettypeinfo($Link_ID);
odbc_result_all($result);
?>
|