array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'function.odbc-primarykeys.php', 1 => 'odbc_primarykeys', 2 => 'Gets the primary keys for a table', ), 'up' => array ( 0 => 'ref.uodbc.php', 1 => 'ODBC 函数', ), 'prev' => array ( 0 => 'function.odbc-prepare.php', 1 => 'odbc_prepare', ), 'next' => array ( 0 => 'function.odbc-procedurecolumns.php', 1 => 'odbc_procedurecolumns', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/uodbc/functions/odbc-primarykeys.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4, PHP 5, PHP 7, PHP 8)
odbc_primarykeys — Gets the primary keys for a table
$odbc,$catalog,$schema,$tableReturns a result object that can be used to fetch the column names that comprise the primary key for a table.
odbcODBC 连接对象,详见 odbc_connect()。
catalogThe catalog ('qualifier' in ODBC 2 parlance).
schemaThe schema ('owner' in ODBC 2 parlance).
table
   返回 ODBC 结果对象 或者在失败时返回 false。
  
The result set has the following columns:
TABLE_CATTABLE_SCHEMTABLE_NAMECOLUMN_NAMEKEY_SEQPK_NAME
   The result set is ordered by TABLE_CAT, TABLE_SCHEM,
   TABLE_NAME and KEY_SEQ.
  
| 版本 | 说明 | 
|---|---|
| 8.4.0 | 
  odbc 现在需要 Odbc\Connection
  实例;之前需要 resource。
  | 
| 8.4.0 | 此函数现在返回 Odbc\Result 实例;之前返回 resource。 | 
示例 #1 List primary Keys of a Column
<?php
$conn = odbc_connect($dsn, $user, $pass);
$primarykeys = odbc_primarykeys($conn, 'TutorialDB', 'dbo', 'TEST');
while (($row = odbc_fetch_array($primarykeys))) {
    print_r($row);
    break; // further rows omitted for brevity
}
?>以上示例的输出类似于:
Array
(
    [TABLE_CAT] => TutorialDB
    [TABLE_SCHEM] => dbo
    [TABLE_NAME] => TEST
    [COLUMN_NAME] => id
    [KEY_SEQ] => 1
    [PK_NAME] => PK__TEST__3213E83FE141F843
)