830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
|
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
|
-
+
|
int objc, /* Parameter count */
Tcl_Obj* const objv[] /* Parameter data */
) {
const char* stringOpts[INDX_MAX];
/* String-valued options */
unsigned long mysqlFlags=0; /* Connection flags */
int sslFlag; /* Flag==1 if SSL configuration is needed */
int sslFlag = 0; /* Flag==1 if SSL configuration is needed */
int optionIndex; /* Index of the current option in ConnOptions */
int optionValue; /* Integer value of the current option */
unsigned short port = 0; /* Server port number */
int isolation = ISOL_NONE; /* Isolation level */
int timeout = 0; /* Timeout value */
int i;
Tcl_Obj* retval;
|