Query: mssql_field_type
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MSSQL_FIELD_TYPE(3) MSSQL_FIELD_TYPE(3) mssql_field_type - Gets the type of a fieldSYNOPSISstring mssql_field_type (resource $result, [int $offset = -1])DESCRIPTIONReturns the type of field no. $offset in $result.PARAMETERSo $result - The result resource that is being evaluated. This result comes from a call to mssql_query(3). o $offset - The field offset, starts at 0. If omitted, the current field is used.RETURN VALUESThe type of the specified field index on success or FALSE on failure.EXAMPLESExample #1 mssql_field_type(3) example <?php // Connect to MSSQL and select the database mssql_connect('MANGOSQLEXPRESS', 'sa', 'phpfi'); mssql_select_db('php'); // Send a select query to MSSQL $query = mssql_query('SELECT [name] FROM [php].[dbo].[persons]'); // Print the field type and length echo ''' . mssql_field_name($query, 0) . '' is a type of ' . strtoupper(mssql_field_type($query, 0)) . '(' . mssql_field_length($query, 0) . ')'; // Free the query result mssql_free_result($query); ?> The above example will output something similar to:SEE ALSOmssql_field_length(3), mssql_field_name(3). PHP Documentation Group MSSQL_FIELD_TYPE(3)
Related Man Pages |
---|
mssql_field_type(3) - php |
mssql_fetch_object(3) - php |
mssql_fetch_array(3) - php |
mssql_field_name(3) - php |
mssql_free_result(3) - php |
Similar Topics in the Unix Linux Community |
---|
Convert each field to excel |
Print the name of files in the directory using Perl |
Get index value by awk |
Passing value of variable to a query within shell script |
Need wrapper around mysql query |