예제 #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
파일: ASqlite_api.cs 프로젝트: alexfordc/Au
 internal static extern byte *sqlite3_errstr(SLError rc);
예제 #3
0
파일: ASqlite_api.cs 프로젝트: alexfordc/Au
 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();
 }