How to set CommandTimeout
问题 I am using Microsoft.SqlServer.Management.Smo . My Code: Server server = new Server(new ServerConnection( new SqlConnection(ConnectionString)); server.ConnectionContext.ExecuteNonQuery(script); I want to set CommandTimeout for it like we do with normal SQLCommand Please tell me how to set CommandTimeout for queries running through Microsoft.SqlServer.Management.Smo.Server 回答1: Try server.ConnectionContext.StatementTimeout 回答2: You can set command timeout using the SMO object as shown below: