SQL Server 2005 - 如何以编程方式将查询结果保存到文本文件中? (即没有在Analyzer中选择Results to file选项而不通过sql命令)?
例如
select * from northwind.dbo.suppliers
我将结果保存为CSV文件?
答案 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