13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
*-----------------------------------------------------------------------------
*/
#include <tcl.h>
#include <tclOO.h>
#include <tdbc.h>
#include <mysql.h>
#include <stdio.h>
#include <string.h>
/* Static data contained in this file */
TCL_DECLARE_MUTEX(mysqlMutex); /* Mutex protecting the global environment
* and its reference count */
static int mysqlRefCount = 0; /* Reference count on the global environment */
|
|
>
|
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
*-----------------------------------------------------------------------------
*/
#include <tcl.h>
#include <tclOO.h>
#include <tdbc.h>
#include <stdio.h>
#include <string.h>
#include <my_global.h>
#include <mysql.h>
/* Static data contained in this file */
TCL_DECLARE_MUTEX(mysqlMutex); /* Mutex protecting the global environment
* and its reference count */
static int mysqlRefCount = 0; /* Reference count on the global environment */
|