Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online

ocicolumntype function syntax tag tutorial 2013 Donate at flattr Flattr this





Alert! Connect with 10,000 Chating Online. Join Now

Php ocicolumntype () function

Write your php code

 
<?php ?>

Php Result


Your code below



(PHP 3>= 3.0.4, PHP 4 , PHP 5)

ocicolumntype -- Returns the data type of a column

Syntax

mixed ocicolumntype ( resource stmt, int col )

ocicolumntype() returns the data type of the column corresponding to the column number (1-based) that is passed in.

Example 1. ocicolumntype() example

<?php   
    $conn
= OCILogon("scott", "tiger");
    
$stmt = OCIParse($conn, "select * from emp");
    
OCIExecute($stmt);
    echo
"<table border=\"1\">";
    echo
"<tr>";
    echo
"<th>Name</th>";
    echo
"<th>Type</th>";
    echo
"<th>Length</th>";
    echo
"</tr>";
    
$ncols = OCINumCols($stmt);
    for (
$i = 1; $i <= $ncols; $i++) {
        
$column_name  = OCIColumnName($stmt, $i);
        
$column_type  = OCIColumnType($stmt, $i);
        
$column_size  = OCIColumnSize($stmt, $i);
        echo
"<tr>";
        echo
"<td>$column_name</td>";
        echo
"<td>$column_type</td>";
        echo
"<td>$column_size</td>";
        echo
"</tr>";
    }
    echo
"</table>\n";
    
OCIFreeStatement($stmt);  
    
OCILogoff($conn);   
?>

Note: This function was renamed to oci_field_type() after PHP >= 5.0.0. For downward compatibility ocicolumntype() can also be used. This is deprecated, however.

Php ocicolumntype Function syntax tag

ocicolumntype php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online



Php ocicolumntype syntax tutorial

php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.


Function index

Variables

Expressions

Operators

Control-Structures

Cookies

Array

Date & Time

Directory function

File

Image

Operators

Form data handling

Mathematics operators

Mail

Php Mysql

Network Functions

Strings

php tutorial guides,functions, classes, code examples and tags for creating simple dynamic site to mysql database driven sites
 
 
Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online