MySQL function library: mysql_field_type

Source: Internet
Author: User
Keywords mysql_field_type mysql function Library php Chinese function manual
Tags aliyun echo function function library html http mysql mysql function library

Mysql_field_type

(PHP3, PHP4)

Mysql_field_type---&http://www.aliyun.com/zixun/aggregation/37954.html ">nbsp; Gets the type of the specified field

Syntax: string mysql_field_type (int result, int field_offset)

Description:

Mysql_field_type () is similar to Mysql_field_name (), and the same argument, but this function returns a form that will be "int", "real", "string", "blob", or something else, Please refer to MySQL file for details.

Example:

<?php

Mysql_connect ("localhost:3306");

mysql_select_db ("Wisconsin");

$result = mysql_query ("SELECT * from Onek");

$fields = Mysql_num_fields ($result);

$rows = mysql_num_rows ($result);

$i = 0;

$table = mysql_field_table ($result, $i);

echo "Your". $table. "' Table Super-delegates". $fields. "Fields and" $rows. "Records <BR>";

echo "The table super-delegates the following fields <BR>";

while ($i < $fields) {

$type = Mysql_field_type ($result, $i);

$name = Mysql_field_name ($result, $i);

$len = Mysql_field_len ($result, $i);

$flags = Mysql_field_flags ($result, $i);

Echo $type. ". $name." ". $len." ". $flags." <BR> ";

$i + +;

}

Mysql_close ();

?>

Compatible Mysql_fieldtype () can also be used.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.