1
SQL Server 2005 - 如何以編程方式將查詢結果保存到文本文件? (即沒有選擇Analyzer中的Results to file選項而不是通過sql命令)?如何以編程方式將查詢結果保存到文本文件?
例如
select * from northwind.dbo.suppliers
我救我的結果到CSV文件?
SQL Server 2005 - 如何以編程方式將查詢結果保存到文本文件? (即沒有選擇Analyzer中的Results to file選項而不是通過sql命令)?如何以編程方式將查詢結果保存到文本文件?
例如
select * from northwind.dbo.suppliers
我救我的結果到CSV文件?
在您所選擇的語言
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