English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
数据库系统
>
MySQL数据库
> 查看源码
field_types.cpp
资源名称:
mysql-vc++.zip [点击查看]
上传用户:
clovervx
上传日期:
2010-03-30
资源大小:
787k
文件大小:
0k
源码类别:
MySQL数据库
开发平台:
Visual C++
field_types.cpp:源码内容
#include <windows.h>
#include "field_types3.hh"
#include "result2.hh"
void FieldTypes::init(const ResUse *res)
{
int num = res->num_fields();
reserve(num);
for (int i = 0; i < num; i++)
{
push_back(res->fields(i));
}
}