delphi下数据表中数据输出到txt中
表结构:三个字段:数量(qty)、年(date1)、月(date2)希望输出为:1月份:00年数量01年数量……07年数量2月份:00年数量01年数量……07年数量……1...
表结构:三个字段:数量(qty)、年(date1)、月(date2)
希望输出为:
1月份: 00年数量 01年数量…… 07年数量
2月份: 00年数量 01年数量…… 07年数量
……
12月份: 00年数量 01年数量…… 07年数量
在delphi下怎么做?谢谢.
一楼:我想严格按照格式输出 展开
希望输出为:
1月份: 00年数量 01年数量…… 07年数量
2月份: 00年数量 01年数量…… 07年数量
……
12月份: 00年数量 01年数量…… 07年数量
在delphi下怎么做?谢谢.
一楼:我想严格按照格式输出 展开
展开全部
var
i, j: integer;
a: string;
f: textfile;
begin
if SaveDialog.Execute then
begin
DataSource1.DataSet.DisableControls;
try
assignfile(f, SaveDialog.FileName);
rewrite(f);
a := '';
for i := 0 to BrowGrid.Columns.Count - 1 do
if BrowGrid.Columns[i].Visible then a := a + BrowGrid.Columns[i].Field.DisplayName + '|';
Writeln(f, a);
BrowGrid.DataSource.DataSet.First;
while not BrowGrid.DataSource.DataSet.Eof do
begin
a := '';
for j := 0 to BrowGrid.Columns.Count - 1 do
begin
if BrowGrid.Columns[j].Visible then a := a + BrowGrid.Columns[j].Field.AsString + '|';
end;
Writeln(f, a);
BrowGrid.DataSource.DataSet.Next;
end;
CloseFile(f);
except
end;
DataSource1.DataSet.EnableControls;
end;
end;
每个字段以“|”分开。
那你就要先把SQL语句写好啊,先用SQL行转列,再输出。
i, j: integer;
a: string;
f: textfile;
begin
if SaveDialog.Execute then
begin
DataSource1.DataSet.DisableControls;
try
assignfile(f, SaveDialog.FileName);
rewrite(f);
a := '';
for i := 0 to BrowGrid.Columns.Count - 1 do
if BrowGrid.Columns[i].Visible then a := a + BrowGrid.Columns[i].Field.DisplayName + '|';
Writeln(f, a);
BrowGrid.DataSource.DataSet.First;
while not BrowGrid.DataSource.DataSet.Eof do
begin
a := '';
for j := 0 to BrowGrid.Columns.Count - 1 do
begin
if BrowGrid.Columns[j].Visible then a := a + BrowGrid.Columns[j].Field.AsString + '|';
end;
Writeln(f, a);
BrowGrid.DataSource.DataSet.Next;
end;
CloseFile(f);
except
end;
DataSource1.DataSet.EnableControls;
end;
end;
每个字段以“|”分开。
那你就要先把SQL语句写好啊,先用SQL行转列,再输出。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询