资 源 简 介
翻译 maninwest@Codeforge 作者:Brad Joss@CodeProject static 类对外暴露了采用 System.Data.DataTable 或 DataSet并输出为 Transact SQL (T-SQL) 脚本的方法。当该脚本在 SQL Server 实例中运行时,可以创建#TEMP 表格形式的逻辑相似的结构。调试时特别有用,可用来分析 DataTable(s) 中的数据。 虽然这个代码的主要目标是用于调试,但是也可用于日志机制,来捕获日志报告详情,显示数据如何在系统中移动。使用代码要创建T-SQL 脚本,需要根据你的需求调用其中一个方法。代码提供了 3 个方法,输出结果到 Debug.Output 窗口,System.String 变量或者到一个文件。DataSet ds = // A DataSet filled with data....
// Write the script results to the Debug.Output window
DataSetToScript.DataSetToSqlScriptOutput(ds);
// Write th