1. 程式人生 > >Keep It Short And Simple

Keep It Short And Simple



2、C#程式碼訪問資料庫,設定超時時間:

1)SqlConnection中設定超時時間的方法:SqlConnection conn = new SqlConnection("Server=.\\SQLEXPRESS ;Integrated security=sspi;connection timeout=5");

2)SqlCommand中設定超時時間的方法:

            SqlCommand cmd = new SqlCommand("select * from tablename");

            cmd.CommandTimeout = 5;


3、C#程式碼中,A函式同步呼叫B函式,如果B函式在5秒內仍未執行完畢,那麼就認為B函式執行失敗: