首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

读取数据库的值解决方案

2012-02-09 
读取数据库的值我数据库有一个表,表里的数据都是数字格式。我想将着这个表里面的数据赋给一个二维数组,请问

读取数据库的值
我数据库有一个表,表里的数据都是数字格式。我想将着这个表里面的数据赋给一个二维数组,请问如何实现?有什么样的函数?

[解决办法]
写个例子
qry->Close();
qry->SQL->Text="select f from table where ... order by ...";
try
{
qry->Open();
}
catch(...)
{
....
}
while(!qry->Eof)
{
array[..][..]=qry->FieldByName("f")->AsInteger;
.....
}

[解决办法]

探讨
写个例子
qry->Close();
qry->SQL->Text="select f from table where ... order by ...";
try
{
qry->Open();
}
catch(...)
{
....
}
while(!qry->Eof)
{
array[..][..]=qry->FieldByName("f")->AsInteger;……

热点排行