theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3ValueC_Vtab_CS_API

Sq3ValueC - work with the virtual-file-systemMore...

+ Collaboration diagram for Sq3ValueC_Vtab_CS_API:

Functions

Sq3ValueC cssq3lite.Sq3ValueC.VtabInFirst ()
  C#: Sq3ValueC pVal.VtabInFirst() C-API
Find all elements on the right-hand side of an IN constraint …
 
Sq3ValueC cssq3lite.Sq3ValueC.VtabInNext ()
  C#: Sq3ValueC pVal.VtabInNext() C-API
Find all elements on the right-hand side of an IN constraint …
 

Detailed Description

Sq3ValueC - work with the virtual-file-system

Function Documentation

◆ VtabInFirst()

Sq3ValueC cssq3lite.Sq3ValueC.VtabInFirst ( )
inline

C#: Sq3ValueC pVal.VtabInFirst() C-API
Find all elements on the right-hand side of an IN constraint …

Definition at line 299 of file Sq3ValueC_cs.cs.

299 {
300 IntPtr ppOut;
301 MkErrorE errVal = Sq3.Sq3ValueVtabInFirst(hdl, out ppOut);
302 MkErrorC.Check(hdl, errVal);
303 return Sq3ValueC.Sq3ValueC_ObjNew(ppOut);
304 }
static void Check(IntPtr ctx, MkErrorE err)
MkErrorE

◆ VtabInNext()

Sq3ValueC cssq3lite.Sq3ValueC.VtabInNext ( )
inline

C#: Sq3ValueC pVal.VtabInNext() C-API
Find all elements on the right-hand side of an IN constraint …

Definition at line 307 of file Sq3ValueC_cs.cs.

307 {
308 IntPtr ppOut;
309 MkErrorE errVal = Sq3.Sq3ValueVtabInNext(hdl, out ppOut);
310 MkErrorC.Check(hdl, errVal);
311 return Sq3ValueC.Sq3ValueC_ObjNew(ppOut);
312 }