1. 接続のタイムアウト ADO SqlConnection.ConnectionTimeout プロパティー (ADO.Net) 規定値15秒 0は制限無し. このプロパティーはReadOnlyなので設定はできない. 設定はConnectionStringで接続時におこなう. 例: ConnectionString = "Data Source=(local);Database=test;Integrated Security=SSPI;Connection Timeout=30;" 参考: SqlConnection.ConnectionString プロパティ (MSDN) このConnectionTimeoutは接続のタイムアウトなので,コマンド実行のタイムアウトとは関係ない. コマンド実行のタイムアウトは↓. 2. クエリー(コマンド実行)のタイムアウト AD