123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="utf-8" lang="utf-8">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
- <title>字段元数据 - CodeIgniter 中文手册|用户手册|用户指南|Wiki文档</title>
- <link rel="shortcut icon" href="http://codeigniter.org.cn/user_guide/../images/design/favicon.ico" type="image/x-icon" />
- <link rel="stylesheet" type="text/css" media="all" href="../userguide.css" />
- <link rel="search" href="http://codeigniter.org.cn/user_guide/../CodeIgniterSearch.xml" type="application/opensearchdescription+xml" title="CodeIgniter 搜索"/>
- <link rel="canonical" href="http://codeigniter.org.cn/user_guide/database/fields.html" />
- <script type="text/javascript" src="../nav/mootools.js-ver=20130324.js"></script>
- <script type="text/javascript" src="../nav/mootools-more.js-ver=20130324.js"></script>
- <script type="text/javascript" src="../nav/nav.js-ver=20130324.js"></script>
- <script type="text/javascript" src="../nav/user_guide_menu.js-ver=20130324.js"></script>
- <meta name="robots" content="all" />
- <meta name="author" content="ExpressionEngine Dev Team" />
- <meta name="description" content="CodeIgniter 中文手册, CodeIgniter 用户指南, CodeIgniter User Guide, Wiki 文档" />
- </head>
- <body>
- <!-- START NAVIGATION -->
- <div id="nav">
- <div id="nav_inner">
- <script type="text/javascript">create_menu('../');</script>
- </div>
- </div>
- <script type="text/javascript">_setNavigation();</script>
- <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="切换目录" alt="切换目录" /></a></div>
- <div id="masthead" class="clearfix">
- <div class="topbar-hd"><h1>CodeIgniter 用户指南 版本 2.2.0</h1></div>
- <div class="topbar-tip">编辑文档、查看近期更改请 <a href="#">登录</a> 或 <a href="#">注册</a> <a href="#">找回密码</a></div> <div id="breadcrumb_right"><a href="../toc.html">目录页</a></div>
- </div>
- <!-- END NAVIGATION -->
- <!-- START BREADCRUMB -->
- <table cellpadding="0" cellspacing="0" border="0" style="width:100%">
- <tr>
- <td id="breadcrumb">
- <a href="#" target="_blank">CodeIgniter 中国首页</a> ›
- <a href="../index.html">用户指南首页</a> › <a href="index.html">数据库类</a> › 字段元数据 </td>
- <td id="searchbox">
- <form method="get" action="http://www.google.com.hk/search" target="google_window">
- <input type="hidden" name="client" value="pub-0176846097796333"></input>
- <input type="hidden" name="forid" value="1"></input>
- <input type="hidden" name="ie" value="UTF-8"></input>
- <input type="hidden" name="oe" value="UTF-8"></input>
- <input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.org.cn/user_guide/" />
- 搜索用户指南
- <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />
-
- <input type="submit" class="submit" name="sa" value="Go" />
- </form>
- </td>
- </tr>
- </table>
- <!-- END BREADCRUMB -->
- <div style="clear:both;text-align:right;padding: 6px 40px 0 0;">
- <a href="#" target="_blank">查看原文</a>
- </div>
- <!--<br clear="all" />--><!-- START CONTENT -->
- <div id="content">
- <h1>字段数据</h1>
- <h2>$this->db->list_fields()</h2>
- <p>Returns an array containing the field names. This query can be called two ways:</p>
- <br>返回一个包含字段名称的数组。这个查询可以用两种方法调用:
- <br/><p>
- 1.您可以将表名称提供给<dfn>$this->db->list_fields()</dfn>调用。
- <code>
- $fields = $this->db->list_fields('table_name');<br /><br />
- foreach ($fields as $field)<br />
- {<br />
- echo $field;<br />
- }
- </code>
- <br/>
- 2.您可以将组合查询语句传递给query函数执行并返回:
- <code>
- $query = $this->db->query('SELECT * FROM some_table');
- <br /><br />
- foreach ($query->list_fields() as $field)<br />
- {<br />
- echo $field;<br />
- }
- </code>
- <h2>$this->db->field_exists()</h2>
- <p>Sometimes it's helpful to know whether a particular field exists before performing an action.
- Returns a boolean TRUE/FALSE. Usage example:</p>
- <br/>
- 在执行一个动作前就先确认某个特殊字段是否存在在某些时候非常有用。返回一个布尔值:TRUE/FALSE。实例:
- <code>
- if ($this->db->field_exists('field_name', 'table_name'))<br />
- {<br />
- // some code...<br />
- }
- </code>
- <p>Note: Replace <em>field_name</em> with the name of the column you are looking for, and replace
- <em>table_name</em> with the name of the table you are looking for.</p>
- <br/>
- 注解:替换<em>field_name</em>为您要查找的字段名称,同时替换<em>table_name</em>为您要查找表名。
- <h2>$this->db->field_data()</h2>
- <p>Returns an array of objects containing field information.</p>
- <br/>
- 返回一个包含字段信息的对象数组。
- <p>Sometimes it's helpful to gather the field names or other metadata, like the column type, max length, etc.</p>
- <br/>
- 收集字段的名称或者其它元数据在某些时候非常有用,例如列的数据类型、最大长度等。
- <p class="important">Note: Not all databases provide meta-data.</p>
- <br/>注解:并非所有数据库都提供元数据。
- <p>Usage example:</p>
- <br/>
- 例子:
- <code>
- $fields = $this->db->field_data('table_name');<br /><br />
- foreach ($fields as $field)<br />
- {<br />
- echo $field->name;<br />
- echo $field->type;<br />
- echo $field->max_length;<br />
- echo $field->primary_key;<br />
- }
- </code>
- <p>If you have run a query already you can use the result object instead of supplying the table name:</p>
- <br/>如果您想执行一个已有的查询时你可用返回项替换掉表格名称:
- <code>
- $query = $this->db->query("YOUR QUERY");<br />
- $fields = $query->field_data();
- </code>
- <p>The following data is available from this function if supported by your database:</p>
- <br/>
- 如果你的数据库支持,以下数据在这个函数中将是可用的:
- <ul>
- <li>name - 列名称</li>
- <li>max_length - 列的最大长度</li>
- <li>primary_key - 1 如果此列被定义为主键</li>
- <li>type - 指定列的数据类型</li>
- </ul><p> </p>
- <div id="Contributors">
- 翻译贡献者:
- analyzer, Drice, Hex, hui314, loiynet</div>
- <div id="DocDate">
- 最后修改: 2012-10-25 17:10:40</div>
- </div>
- <!-- END CONTENT -->
- <div id="footer">
- <p>
- 上一个主题: <a href="table_data.html">数据库表数据</a> · <a href="#top">页首</a>
- · <a href="../index.html">用户指南首页</a> · 下一个主题: <a href="call_function.html">自定义函数调用</a> </p>
- <p><a href="#">CodeIgniter</a> · 版权所有 © 2006-2013 · <a href="#">Ellislab, Inc.</a></p>
- <p>中文化: <a href="#">CodeIgniter 中国</a> · 制作: Hex · 版本: 1.30 · 鸣谢: 子非鱼</p>
- </div>
- </body>
- </html>
|