theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LiteC_Error_CS_API

Sq3LiteC - work with an errorMore...

+ Collaboration diagram for Sq3LiteC_Error_CS_API:

Functions

Sq3ErrorE cssq3lite.Sq3LiteC.ErrCode ()
  C#: Sq3ErrorE db.ErrCode() C-API
Error Codes And Messages …
 
string cssq3lite.Sq3LiteC.ErrMsg ()
  C#: string sq3lite.ErrMsg() C-API
Error Codes And Messages …
 
void cssq3lite.Sq3LiteC.ErrorOffset ()
  C#: db.ErrorOffset() C-API
Error Codes And Messages …
 
Sq3ExtendetResultCodesE cssq3lite.Sq3LiteC.ExtendetErrCode ()
  C#: Sq3ExtendetResultCodesE db.ExtendetErrCode() C-API
Error Codes And Messages …
 
void cssq3lite.Sq3LiteC.SystemErrno ()
  C#: sq3lite.SystemErrno() C-API
Low-level system error code …
 
static string cssq3lite.Sq3LiteC.ErrStr (int arg0)
  C#: [static] string Sq3LiteC.ErrStr(int arg0) C-API
Error Codes And Messages …
 

Detailed Description

Sq3LiteC - work with an error

Function Documentation

◆ ErrCode()

Sq3ErrorE cssq3lite.Sq3LiteC.ErrCode ( )
inline

C#: Sq3ErrorE db.ErrCode() C-API
Error Codes And Messages …

Definition at line 195 of file Sq3LiteC_cs.cs.

195 {
196 Sq3ErrorE __retVal__L = Sq3.Sq3LiteErrCode(hdl);
197 return __retVal__L;
198 }
Sq3ErrorE
Result Codes.

◆ ErrMsg()

string cssq3lite.Sq3LiteC.ErrMsg ( )
inline

C#: string sq3lite.ErrMsg() C-API
Error Codes And Messages …

Definition at line 201 of file Sq3LiteC_cs.cs.

201 {
202 IntPtr __retVal__L = Sq3.Sq3LiteErrMsg(hdl);
203 return Marshal.PtrToStringAnsi(__retVal__L);
204 }

◆ ErrorOffset()

void cssq3lite.Sq3LiteC.ErrorOffset ( )
inline

C#: db.ErrorOffset() C-API
Error Codes And Messages …

Definition at line 207 of file Sq3LiteC_cs.cs.

207 {
208 MkErrorE errVal = Sq3.Sq3LiteErrorOffset(hdl);
209 MkErrorC.Check(hdl, errVal);
210 }
static void Check(IntPtr ctx, MkErrorE err)
MkErrorE

◆ ErrStr()

static string cssq3lite.Sq3LiteC.ErrStr ( int arg0)
inlinestatic

C#: [static] string Sq3LiteC.ErrStr(int arg0) C-API
Error Codes And Messages …

Definition at line 227 of file Sq3LiteC_cs.cs.

227 {
228 IntPtr __retVal__L = Sq3.Sq3LiteErrStr(arg0);
229 return Marshal.PtrToStringAnsi(__retVal__L);
230 }

◆ ExtendetErrCode()

Sq3ExtendetResultCodesE cssq3lite.Sq3LiteC.ExtendetErrCode ( )
inline

C#: Sq3ExtendetResultCodesE db.ExtendetErrCode() C-API
Error Codes And Messages …

Definition at line 213 of file Sq3LiteC_cs.cs.

213 {
214 Sq3ExtendetResultCodesE __retVal__L = Sq3.Sq3LiteExtendetErrCode(hdl);
215 return __retVal__L;
216 }
Sq3ExtendetResultCodesE
Extended Result Codes.

◆ SystemErrno()

void cssq3lite.Sq3LiteC.SystemErrno ( )
inline

C#: sq3lite.SystemErrno() C-API
Low-level system error code …

Definition at line 219 of file Sq3LiteC_cs.cs.

219 {
220 MkErrorE errVal = Sq3.Sq3LiteSystemErrno(hdl);
221 MkErrorC.Check(hdl, errVal);
222 }