2012-06-27 44 views

回答

3

使用Exception.StackTrace或SQLiteException.ErrorCode

try 
{ 

} 
catch(SQLiteException ex) 
{ 
    string code = ex.ErrorCode; 
} 
+1

該鏈接不指向任何東西 –

0

好問題。 System.Exception沒有名稱的成員「.ErrorCode」

Catch Ex As SQLiteException 
     E = Ex.ResultCode 
     Return E 
    End Try