Web студия "GrandView"
  Главная   Написать Контакты
   
   
О проекте
Руководство php
 

fbsql_field_type

(PHP 4 >= 4.0.6, PHP 5)

fbsql_field_type -- Get the type of the specified field in a result

Описание

string fbsql_field_type ( resource result [, int field_offset] )

fbsql_field_type() is similar to the fbsql_field_name() function, but the field type is returned instead.

Список параметров

result

A result identifier returned by fbsql_query() or fbsql_db_query().

field_offset

The numerical offset of the field. The field index starts at 0.

Возвращаемые значения

Returns the field type, as a string.

This can be one of int, real, string, blob, and others as detailed in the FrontBase documentation.

Примеры

Пример 1. fbsql_field_type() example

<?php

fbsql_connect
("localhost", "_SYSTEM", "");
fbsql_select_db("wisconsin");
$result = fbsql_query("SELECT * FROM onek;");
$fields = fbsql_num_fields($result);
$rows   = fbsql_num_rows($result);
$i = 0;
$table = fbsql_field_table($result, $i);
echo
"Your '" . $table . "' table has " . $fields . " fields and " . $rows . " records <br />";
echo
"The table has the following fields <br />";
while (
$i < $fields) {
   
$type  = fbsql_field_type($result, $i);
   
$name  = fbsql_field_name($result, $i);
   
$len   = fbsql_field_len($result, $i);
   
$flags = fbsql_field_flags($result, $i);
    echo
$type . " " . $name . " " . $len . " " . $flags . "<br />";
   
$i++;
}
fbsql_close();

?>

Смотрите также

fbsql_field_name()



add a note add a note User Contributed Notes
fbsql_field_type
There are no user contributed notes for this page.

fbsql_free_result> <fbsql_field_table
Last updated: Sat, 27 Jan 2007
 
 
Новости
11 июля 2007
Сайт запущен
© 2007 info@grandviewstudio.com

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 324

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 330
Z058440144362 Z348613067571