2007年9月2日 星期日

.NET SqlDataSource ConvertEmptyStringToNull (revised)

在SqlDataSource裡面使用Select時,SelectParameters裡面如果有空字串,要將parameter的ConvertEmptyStringToNull屬性定義為false,(曾經有這種情形:設ConvertEmptyStringToNull為false,但空字串還是會被null取代,is this a known bug?or there is a problem with my setting?導致SelectCommand根本不會被執行,或是執行錯誤,也不會出現錯誤訊息
解決方法是使用SqlDataSource的Selecting事件,將所有的null值再度轉換成空字串)

例如:

有一個stored procedure叫做pr_test,pr_test需要兩個參數,@test1,@test2,假如在SQL Server Management Studio裡面查詢時輸入exec pr_test null, null的話,因為我有使用isnull將參數再度轉換回空字串,所以執行結果是正常的,有回傳一筆資料,但是假如在.NET裡面,我沒有設定參數的ConvertEmptyStringToNull屬性為false的話,就會產生錯誤,無法回傳資料

As a side note: 如果在stored procedure裡面同時需要使用Insert語法,並return select results,必須使用SqlDataSource Select,instead of Insert

沒有留言: