theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3StmtC_Sql_CS_API

Sq3StmtC - Retrieving Statement SQL … More...

+ Collaboration diagram for Sq3StmtC_Sql_CS_API:

Functions

string cssq3lite.Sq3StmtC.ExpandedSql ()
  C#: string pStmt.ExpandedSql() C-API
Retrieving Statement SQL …
 
string cssq3lite.Sq3StmtC.GetPzTail ()
  C#: string sq3stmt.GetPzTail() C-API
return the non compiled sql-statement from Sq3StmtPrepareV2 and Sq3StmtPrepareV3
 
string cssq3lite.Sq3StmtC.Sql ()
  C#: string pStmt.Sql() C-API
Retrieving Statement SQL …
 

Detailed Description

Sq3StmtC - Retrieving Statement SQL …

Function Documentation

◆ ExpandedSql()

string cssq3lite.Sq3StmtC.ExpandedSql ( )
inline

C#: string pStmt.ExpandedSql() C-API
Retrieving Statement SQL …

Definition at line 430 of file Sq3StmtC_cs.cs.

430 {
431 IntPtr __retVal__L = Sq3.Sq3StmtExpandedSql(hdl);
432 return Marshal.PtrToStringAnsi(__retVal__L);
433 }

◆ GetPzTail()

string cssq3lite.Sq3StmtC.GetPzTail ( )
inline

C#: string sq3stmt.GetPzTail() C-API
return the non compiled sql-statement from Sq3StmtPrepareV2 and Sq3StmtPrepareV3

Definition at line 436 of file Sq3StmtC_cs.cs.

436 {
437 IntPtr __retVal__L = Sq3.Sq3StmtGetPzTail(hdl);
438 return Marshal.PtrToStringAnsi(__retVal__L);
439 }

◆ Sql()

string cssq3lite.Sq3StmtC.Sql ( )
inline

C#: string pStmt.Sql() C-API
Retrieving Statement SQL …

Definition at line 442 of file Sq3StmtC_cs.cs.

442 {
443 IntPtr __retVal__L = Sq3.Sq3StmtSql(hdl);
444 return Marshal.PtrToStringAnsi(__retVal__L);
445 }