PhpDig.net

What is PhpDig?
PhpDig is a PHP MySQL based
Web Spider & Search Engine.




mssql_fetch_field

Name

mssql_fetch_field — Displays information about a field.

Synopsis

object mssql_fetch_field(result[, field]);
int result: Result identifier
int field (optional): Field offset

Returns

Field information or FALSE on error

Description

Returns an object containing information about the field. The field offset is optional on second and subsequent calls and advances to the next field. Four properties are returned with the object:

name Name of the field
column_source Table from which the column originated
max_length Maximum length of the column
numeric Flag indicating whether the field is of a numeric type


Example

Example 767. Display field information

$db = @mssql_connect("server","sa","password") or die("Unable to connect to server");
mssql_select_db("pubs");
$result = mssql_query("SELECT a.au_fname, a.au_lname, t.royaltyper FROM authors AS a, titleauthor AS t WHERE t.au_id = a.au_id");
print("<table border=1>");
print("<tr><th>Name</th><th>Source</th><th>Length</th><th>Numeric</th></tr>");
while ($row = mssql_fetch_field($result)) {
    print("<tr>");
    printf("<td>%s</td>", $row->name);
    printf("<td>%s</td>", $row->column_source);
    printf("<td>%s</td>", $row->max_length);
    printf("<td>%s</td>", $row->numeric);
    print("</tr>\n");
}
print("</table>");



PHP Functions Essential Reference. Copyright © 2002 by New Riders Publishing (Authors: Zak Greant, Graeme Merrall, Torben Wilson, Brett Michlitsch). This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). The authors of this book have elected not to choose any options under the OPL. This online book was obtained from http://www.fooassociates.com/phpfer/ and is designed to provide information about the PHP programming language, focusing on PHP version 4.0.4 for the most part. The information is provided on an as-is basis, and no warranty or fitness is implied. All persons and entities shall have neither liability nor responsibility to any person or entity with respect to any loss or damage arising from the information contained in this book.

Powered by: vBulletin Version 3.0.7
Copyright ©2000 - 2005, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.