Home
last modified time | relevance | path

Searched refs:zCommit (Results 1 – 1 of 1) sorted by relevance

/src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c192 char *zCommit; /* The commit hook callback routine */ member
830 rc = Tcl_Eval(pDb->interp, pDb->zCommit); in DbCommitHandler()
2384 if( pDb->zCommit ){ in DbObjCmd()
2385 Tcl_AppendResult(interp, pDb->zCommit, (char*)0); in DbObjCmd()
2388 const char *zCommit; in DbObjCmd() local
2390 if( pDb->zCommit ){ in DbObjCmd()
2391 Tcl_Free(pDb->zCommit); in DbObjCmd()
2393 zCommit = Tcl_GetStringFromObj(objv[2], &len); in DbObjCmd()
2394 if( zCommit && len>0 ){ in DbObjCmd()
2395 pDb->zCommit = Tcl_Alloc( len + 1 ); in DbObjCmd()
[all …]