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

pg_field_table

(no version information, might be only in CVS)

pg_field_table -- Returns the name or oid of the tables field

Описание

mixed pg_field_table ( resource result, int field_number, bool oid_only )

pg_field_table() returns the name of the table that field belongs to, or the table's oid if oid_only is TRUE.

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

result

PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_execute() (among others).

field_number

Field number, starting from 0.

oid_only

By default the tables name that field belongs to is returned but if oid_only is set to TRUE, then the oid will instead be returned.

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

On success either the fields table name or oid. Or, FALSE on failure.

Примеры

Пример 1. Getting table information about a field

<?php
$dbconn
= pg_connect("dbname=publisher") or die("Could not connect");

$res = pg_query($dbconn, "SELECT bar FROM foo");

echo
pg_field_table($res, 0);
echo
pg_field_table($res, 0, true);

$res = pg_query($dbconn, "SELECT version()");
var_dump(pg_field_table($res, 0));
?>

Результатом выполнения данного примера будет что-то подобное:

foo
14379580

bool(false)

Примечания

Замечание: Returning the oid is much faster than returning the table name because fetching the table name requires a query to the database system table.

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

pg_field_name()
pg_field_type()



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

pg_field_type_oid> <pg_field_size
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