摘要:
// 调用cmd来执行。 private void Process() { Process p = new Process(); //加载CMD命令行并传递参数执行 p.StartInfo.FileName = "cmd.exe"; //这里是设置要调用的目标程序或文件,FileName 属性不 ... 阅读全文
摘要:
ALTER PROCEDURE [dbo].[test] AS DECLARE @statment NVARCHAR(300) -- 构造sql语句 BEGIN SET @statment = 'SELECT ' + '1*10+20+15' + ' AS RESULT'; -- 方式一 EXEC sp_executesql @statment -- 方式二 ... 阅读全文