目录搜索
欢迎目录快速参考图基本信息服务器要求许可协议变更记录关于CodeIgniter安装下载 CodeIgniter安装指导从老版本升级疑难解答介绍开始CodeIgniter 是什么?CodeIgniter 速记表支持特性应用程序流程图模型-视图-控制器架构目标教程内容提要加载静态内容创建新闻条目读取新闻条目结束语常规主题CodeIgniter URL控制器保留字视图模型辅助函数使用 CodeIgniter 类库创建你自己的类库使用 CodeIgniter 适配器创建适配器创建核心系统类钩子 - 扩展框架的核心自动装载资源公共函数URI 路由错误处理缓存调试应用程序以CLI方式运行管理应用程序处理多环境PHP替代语法安全开发规范类库参考基准测试类日历类购物车类配置类Email 类加密类文件上传类表单验证详解FTP 类图像处理类输入类Javascript 类语言类装载类迁移类输出类分页类模板解析器类安全类Session 类HTML 表格类引用通告类排版类单元测试类URI 类User-Agent 类表单验证XML-RPC 和 XML-RPC 服务器Zip 编码类缓存适配器适配器参考适配器数据库类Active Record 类数据库缓存类自定义函数调用数据库配置连接你的数据库数据库快速入门例子代码字段数据数据库维护类查询辅助函数数据库类查询生成查询记录集表数据事务数据库工具类JavaScript类辅助函数参考数组辅助函数CAPTCHA 辅助函数Cookie Helper日期辅助函数目录辅助函数下载辅助函数Email 辅助函数文件辅助函数表单辅助函数HTML辅助函数Inflector 辅助函数语言辅助函数数字辅助函数路径辅助函数安全辅助函数表情辅助函数字符串辅助函数文本辅助函数排版辅助函数URL 辅助函数XML 辅助函数
文字

CodeIgniter 用户指南 版本 2.1.0

编辑文档、查看近期更改请 登录 或 注册  找回密码
查看原文

字段数据

$this->db->list_fields()

Returns an array containing the field names. This query can be called two ways:


返回一个包含字段名称的数组。这个查询可以用两种方法调用:

1.您可以将表名称提供给$this->db->list_fields()调用。 $fields = $this->db->list_fields('table_name');

foreach ($fields as $field)
{
   echo $field;
}

2.您可以将组合查询语句传递给query函数执行并返回: $query = $this->db->query('SELECT * FROM some_table');

foreach ($query->list_fields() as $field)
{
   echo $field;
}

$this->db->field_exists()

Sometimes it's helpful to know whether a particular field exists before performing an action. Returns a boolean TRUE/FALSE. Usage example:


执行一个动作前确认字段是否存在时它就变得非常有用了。返回一个布尔值:TRUE/FALSE。实例: if ($this->db->field_exists('field_name', 'table_name'))
{
   // some code...
}

Note: Replace field_name with the name of the column you are looking for, and replace table_name with the name of the table you are looking for.


注解:替换field_name为您要查找人字段名称,同时替换table_name为您要查找表名。

$this->db->field_data()

Returns an array of objects containing field information.


返回一个包含字段名称信息的数组。

Sometimes it's helpful to gather the field names or other metadata, like the column type, max length, etc.


取得字段名称或者其它元数据时就变得非常有用了,例如列的数据类型、最大长度等。

Note: Not all databases provide meta-data.


注解:并非所有数据库都提供元数据。

Usage example:


例子: $fields = $this->db->field_data('table_name');

foreach ($fields as $field)
{
   echo $field->name;
   echo $field->type;
   echo $field->max_length;
   echo $field->primary_key;
}

If you have run a query already you can use the result object instead of supplying the table name:


如果您想执行一个已有的查询时你可用返回项替换掉表格名称: $query = $this->db->query("YOUR QUERY");
$fields = $query->field_data();

The following data is available from this function if supported by your database:


如果这个函数支持您的数据库,它将会返回以下数据:
  • name - 列名称
  • max_length - 列的最大长度
  • primary_key - 1 如果此列被定义为主键
  • type - 指定列的数据类型

 

翻译贡献者: analyzer, Drice, Hex
最后修改: 2010-10-22 11:24:57
上一篇:下一篇: