A
almeidar
Unregistered / Unconfirmed
GUEST, unregistred user!
我使用TMemoryStream将一个结构体数组存入数据库,结构体数组如下:
pdata = record
id : String[20];
value : String[20];
end;
var
p : array of pdata
//动态数组
ms : TMemoryStream;
begin
...
setlength(p,200);
...
ms.write(p,length(p));
//ms中的数据为非纯文本,如果我要从ms中再导入p数组中,使用ms.read好象没有任何
的作用。
请大家帮助!
pdata = record
id : String[20];
value : String[20];
end;
var
p : array of pdata
//动态数组
ms : TMemoryStream;
begin
...
setlength(p,200);
...
ms.write(p,length(p));
//ms中的数据为非纯文本,如果我要从ms中再导入p数组中,使用ms.read好象没有任何
的作用。
请大家帮助!