Searched refs:pCollate (Results 1 – 1 of 1) sorted by relevance
547 while( pDb->pCollate ){ in delDatabaseRef()548 SqlCollate *pCollate = pDb->pCollate; in delDatabaseRef() local549 pDb->pCollate = pCollate->pNext; in delDatabaseRef()550 Tcl_Free((char*)pCollate); in delDatabaseRef()2255 SqlCollate *pCollate; in DbObjCmd() local2265 pCollate = (SqlCollate*)Tcl_Alloc( sizeof(*pCollate) + nScript + 1 ); in DbObjCmd()2267 pCollate->interp = interp; in DbObjCmd()2268 pCollate->pNext = pDb->pCollate; in DbObjCmd()2269 pCollate->zScript = (char*)&pCollate[1]; in DbObjCmd()2270 pDb->pCollate = pCollate; in DbObjCmd()[all …]