C
cncharles
Unregistered / Unconfirmed
GUEST, unregistred user!
我想做一个SQL数据库初始化程序, 把原来的SQL数据库的基本数据都生成了
XML文件,本来用每条记录都生成Insert Into Values 这样的格式的, 等
新数据库建立好后再用把生成的SQL基本数据文件在查询器执行, 但是如果是
Blob字段就无能为力了,所以只好把每个基本数据表生成XML文件, 再用下面的法
写入到新的数据库中, 各位高手还没有更好的解决方案.
cds1.LoadFromFile('test.xml');
cds1.First;
while not cds1.Eofdo
begin
cds1.Edit;
cds1.Next;
end;
cds1.ApplyUpdates(-1);
end;
CSDN都没人搞得定!
XML文件,本来用每条记录都生成Insert Into Values 这样的格式的, 等
新数据库建立好后再用把生成的SQL基本数据文件在查询器执行, 但是如果是
Blob字段就无能为力了,所以只好把每个基本数据表生成XML文件, 再用下面的法
写入到新的数据库中, 各位高手还没有更好的解决方案.
cds1.LoadFromFile('test.xml');
cds1.First;
while not cds1.Eofdo
begin
cds1.Edit;
cds1.Next;
end;
cds1.ApplyUpdates(-1);
end;
CSDN都没人搞得定!