コード例 #1
0
 public static KeyValuePair <int, string> GetError(this ISqlite3 sqlite3, int errorCode)
 {
     return(KeyValuePair.Create(errorCode, sqlite3.Errstr(errorCode) ?? string.Empty));
 }