示例#1
0
文件: ASqlite.cs 项目: alexfordc/Au
 ASqliteStatement _Err(SLError r, string func)
 {
     if (r != 0 && r != SLError.Row)
     {
         throw new SLException(r, _db, func);
     }
     return(this);
 }
示例#2
0
 internal static extern byte *sqlite3_errstr(SLError rc);
示例#3
0
 internal static string Errstr(SLError r) => Util.AConvert.FromUtf8(sqlite3_errstr(r));
示例#4
0
文件: XamlLoader.cs 项目: liquidboy/X
 public object CreateFromStringWithError(string xaml, bool create_namescope, object element_type, int flags, SLError error, DependencyObject owner = null)
 {
     throw new NotImplementedException();
 }
示例#5
0
文件: XamlLoader.cs 项目: liquidboy/X
 public object HydrateFromStringWithError(string xaml, object obj, bool create_namescope, object element_type, int flags, SLError error) {
     throw new NotImplementedException();
 }
示例#6
0
文件: XamlLoader.cs 项目: liquidboy/X
 public object CreateFromFileWithError(string xaml, bool create_namescope, out Type element_type, SLError error)
 {
     throw new NotImplementedException();
 }
示例#7
0
文件: sqlite_api.cs 项目: qmgindi/Au
 internal static string Errstr(SLError r) => Convert2.Utf8Decode(sqlite3_errstr(r));
示例#8
0
 public object HydrateFromStringWithError(string xaml, object obj, bool create_namescope, object element_type, int flags, SLError error)
 {
     throw new NotImplementedException();
 }
示例#9
0
 public object CreateFromStringWithError(string xaml, bool create_namescope, object element_type, int flags, SLError error, DependencyObject owner = null)
 {
     throw new NotImplementedException();
 }
示例#10
0
 public object CreateFromFileWithError(string xaml, bool create_namescope, out Type element_type, SLError error)
 {
     throw new NotImplementedException();
 }