如何以编程方式将查询结果保存到文本文件?

时间:2009-06-24 09:59:42

标签: sql-server sql-server-2005 tsql

SQL Server 2005 - 如何以编程方式将查询结果保存到文本文件中? (即没有在Analyzer中选择Results to file选项而不通过sql命令)?

例如

select * from northwind.dbo.suppliers

我将结果保存为CSV文件?

1 个答案:

答案 0 :(得分:0)

用您选择的语言

Open a SQL Connection
Issue command (select)
While not end_of_results
  for each column
    write column value
    write ','
  write new line
Clean up connection