Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c26904 ImportCtx sCtx; /* Reader context */ in do_meta_command() local
26912 memset(&sCtx, 0, sizeof(sCtx)); in do_meta_command()
26939 sCtx.cColSep = SEP_Unit[0]; in do_meta_command()
26940 sCtx.cRowSep = SEP_Record[0]; in do_meta_command()
26944 sCtx.cColSep = ','; in do_meta_command()
26945 sCtx.cRowSep = '\n'; in do_meta_command()
26995 sCtx.cColSep = (u8)p->colSeparator[0]; in do_meta_command()
26996 sCtx.cRowSep = (u8)p->rowSeparator[0]; in do_meta_command()
26998 sCtx.zFile = zFile; in do_meta_command()
26999 sCtx.nLine = 1; in do_meta_command()
[all …]
H A Dsqlite3.c117638 RenameCtx sCtx;
117669 memset(&sCtx, 0, sizeof(sCtx));
117670 sCtx.iCol = ((iCol==pTab->iPKey) ? -1 : iCol);
117682 sWalker.u.pRename = &sCtx;
117684 sCtx.pTab = pTab;
117701 sCtx.pTab = sParse.pNewTable;
117705 &sParse, &sCtx, (void*)sParse.pNewTable->aCol[iCol].zCnName
117708 if( sCtx.iCol<0 ){
117709 renameTokenFind(&sParse, &sCtx, (void*)&sParse.pNewTable->iPKey);
117731 renameTokenFind(&sParse, &sCtx, (void*)&pFKey->aCol[i]);
[all …]