You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Full path of the HTML file that will be generated after the execution of the query.
92
+
/// </summary>
93
+
publicstringHtmlFileName{get;set;}
95
94
96
-
returnExecuteMethod("Execute",executeRequest);
97
-
}
95
+
/// <summary>
96
+
/// Full path of the JSON file that will be generated after the execution of the query.
97
+
/// </summary>
98
+
publicstringJsonFileName{get;set;}
99
+
100
+
/// <summary>
101
+
/// Full path of the XML file that will be generated after the execution of the query.
102
+
/// </summary>
103
+
publicstringXmlFileName{get;set;}
104
+
105
+
/// <summary>
106
+
/// Connection string to the SQL Server and Database where the Table will be generated after the execution of the query.
107
+
/// </summary>
108
+
publicstringSqlConnectionString{get;set;}
109
+
110
+
/// <summary>
111
+
/// For SQL decimal data type, the maximum total number of decimal digits to be stored.
112
+
/// </summary>
113
+
publicintSqlDecimalPrecision{get;set;}
114
+
115
+
/// <summary>
116
+
/// For SQL decimal data type, the number of decimal digits that are stored to the right of the decimal point.
117
+
/// </summary>
118
+
publicintSqlDecimalScale{get;set;}
119
+
120
+
/// <summary>
121
+
/// When SqlConnectionString is not null, name of the SQL Table that will be generated after the execution of the query. If this property is null, the default name will correspond to the QueryName.
122
+
/// </summary>
123
+
publicstringSqlTableName{get;set;}
124
+
125
+
/// <summary>
126
+
/// Action taken when SqlConnectionString and SqlTableName are not null
127
+
/// </summary>
128
+
publicSqlTableActionSqlTableAction{get;set;}
129
+
130
+
/// <summary>
131
+
/// Path of the folder to create temporary files.
132
+
/// </summary>
133
+
publicstringTempPath{get;set;}
98
134
99
135
/// <summary>
100
136
/// Execute the specified query.
101
137
/// </summary>
102
138
/// <param name="queryName">Name of the query to execute</param>
0 commit comments