theSq3Lite 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard - theLib - theATL
c - tcl - atl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
Sq3StmtC_Sql_JV_API

Sq3StmtC - Retrieving Statement SQL … More...

+ Collaboration diagram for Sq3StmtC_Sql_JV_API:

Functions

native String jvsq3lite.Sq3StmtC.ExpandedSql ()
  Java: String pStmt.ExpandedSql() C-API
Retrieving Statement SQL …
 
native String jvsq3lite.Sq3StmtC.GetPzTail ()
  Java: String sq3stmt.GetPzTail() C-API
return the non compiled sql-statement from Sq3StmtPrepareV2 and Sq3StmtPrepareV3
 
native String jvsq3lite.Sq3StmtC.Sql ()
  Java: String pStmt.Sql() C-API
Retrieving Statement SQL …
 
JNIEXPORT jstring JNICALL Java_jvsq3lite_Sq3StmtC_ExpandedSql (JNIEnv *env, jobject self)
  Java: String pStmt.ExpandedSql() C-API
Retrieving Statement SQL …
 
JNIEXPORT jstring JNICALL Java_jvsq3lite_Sq3StmtC_GetPzTail (JNIEnv *env, jobject self)
  Java: String sq3stmt.GetPzTail() C-API
return the non compiled sql-statement from Sq3StmtPrepareV2 and Sq3StmtPrepareV3
 
JNIEXPORT jstring JNICALL Java_jvsq3lite_Sq3StmtC_Sql (JNIEnv *env, jobject self)
  Java: String pStmt.Sql() C-API
Retrieving Statement SQL …
 

Detailed Description

Sq3StmtC - Retrieving Statement SQL …

Function Documentation

◆ ExpandedSql()

native String jvsq3lite.Sq3StmtC.ExpandedSql ( )

Java: String pStmt.ExpandedSql() C-API
Retrieving Statement SQL …

◆ GetPzTail()

native String jvsq3lite.Sq3StmtC.GetPzTail ( )

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

◆ Java_jvsq3lite_Sq3StmtC_ExpandedSql()

JNIEXPORT jstring JNICALL Java_jvsq3lite_Sq3StmtC_ExpandedSql ( JNIEnv * env,
jobject self )

Java: String pStmt.ExpandedSql() C-API
Retrieving Statement SQL …

Definition at line 577 of file Sq3StmtC_jv.c.

577 {
578 SQ3_STMT hdl = (SQ3_STMT)pObj2Hdl(env,"Sq3StmtC",self);
579 JavaErrorCheck;
580 MkRtSetup_X(hdl);
581 MK_STR __retVal__L = Sq3StmtExpandedSql(hdl);
582 jstring __retVal__S = JC2O(env,__retVal__L);
583 return __retVal__S;
584error:
585 return 0;
586}
MK_STRB * MK_STR
#define MkRtSetup_X(x)
struct Sq3StmtS * SQ3_STMT
class-shortcut for struct Sq3StmtS *, all shortcut using the XX_YYY syntax (only for public API) …
static MK_STR Sq3StmtExpandedSql(SQ3_STMT pStmt)
Retrieving Statement SQL …
Struct to represent the data of the Sq3StmtC …

◆ Java_jvsq3lite_Sq3StmtC_GetPzTail()

JNIEXPORT jstring JNICALL Java_jvsq3lite_Sq3StmtC_GetPzTail ( JNIEnv * env,
jobject self )

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

Definition at line 589 of file Sq3StmtC_jv.c.

589 {
590 SQ3_STMT hdl = (SQ3_STMT)pObj2Hdl(env,"Sq3StmtC",self);
591 JavaErrorCheck;
592 MkRtSetup_X(hdl);
593 MK_STRN __retVal__L = Sq3StmtGetPzTail(hdl);
594 jstring __retVal__S = JC2O(env,__retVal__L);
595 return __retVal__S;
596error:
597 return 0;
598}
const MK_STRB * MK_STRN
static MK_STRN Sq3StmtGetPzTail(SQ3_STMT sq3stmt)
return the non compiled sql-statement from Sq3StmtPrepareV2 and Sq3StmtPrepareV3 …

◆ Java_jvsq3lite_Sq3StmtC_Sql()

JNIEXPORT jstring JNICALL Java_jvsq3lite_Sq3StmtC_Sql ( JNIEnv * env,
jobject self )

Java: String pStmt.Sql() C-API
Retrieving Statement SQL …

Definition at line 601 of file Sq3StmtC_jv.c.

601 {
602 SQ3_STMT hdl = (SQ3_STMT)pObj2Hdl(env,"Sq3StmtC",self);
603 JavaErrorCheck;
604 MkRtSetup_X(hdl);
605 MK_STRN __retVal__L = Sq3StmtSql(hdl);
606 jstring __retVal__S = JC2O(env,__retVal__L);
607 return __retVal__S;
608error:
609 return 0;
610}
static MK_STRN Sq3StmtSql(SQ3_STMT pStmt)
Retrieving Statement SQL …

◆ Sql()

native String jvsq3lite.Sq3StmtC.Sql ( )

Java: String pStmt.Sql() C-API
Retrieving Statement SQL …