tdbc::mysql

Check-in [44e7b3075f]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Allow tdbc compiled against 8.6.x headers run in 8.6.y, even when y<x.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 44e7b3075f814d892d9b81f2ffe647bcdaa53e91
User & Date: jan.nijtmans 2013-10-02 11:25:29.277
Context
2013-10-02
11:27
update to latest TEA check-in: c7bbd0f276 user: jan.nijtmans tags: trunk
11:25
Allow tdbc compiled against 8.6.x headers run in 8.6.y, even when y<x. check-in: 44e7b3075f user: jan.nijtmans tags: trunk
2013-09-13
18:20
Fixed a small formatting problem in the man page check-in: ca79f5e263 user: steve tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to generic/tdbcmysql.c.
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
    int i;

    /* Require all package dependencies */

    if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
	return TCL_ERROR;
    }
    if (Tcl_OOInitStubs(interp) == NULL) {
	return TCL_ERROR;
    }
    if (Tdbc_InitStubs(interp) == NULL) {
	return TCL_ERROR;
    }

    /* Provide the current package */







|







3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
    int i;

    /* Require all package dependencies */

    if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
	return TCL_ERROR;
    }
    if (TclOOInitializeStubs(interp, "1.0") == NULL) {
	return TCL_ERROR;
    }
    if (Tdbc_InitStubs(interp) == NULL) {
	return TCL_ERROR;
    }

    /* Provide the current package */