-
-
Save Gaurav2728/3922377 to your computer and use it in GitHub Desktop.
Selected attributes of struct Vdbe from VdbeInt.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Vdbe { | |
sqlite3 *db; /* The database connection that owns this statement */ | |
Op *aOp; /* Space to hold the virtual machine's program */ | |
Mem *aMem; /* The memory locations */ | |
Mem **apArg; /* Arguments to currently executing user function */ | |
Mem *aColName; /* Column names to return */ | |
Mem *pResultSet; /* Pointer to an array of results */ | |
int nMem; /* Number of memory locations currently allocated */ | |
int nOp; /* Number of instructions in the program */ | |
VdbeCursor **apCsr; /* One element of this array for each open cursor */ | |
int pc; /* The program counter */ | |
int rc; /* Value to return */ | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment