Home
last modified time | relevance | path

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

/src/contrib/sqlite3/ !
H A Dshell.c29624 ImportCtx sCtx; /* Reader context */ in do_meta_command() local
29632 memset(&sCtx, 0, sizeof(sCtx)); in do_meta_command()
29659 sCtx.cColSep = SEP_Unit[0]; in do_meta_command()
29660 sCtx.cRowSep = SEP_Record[0]; in do_meta_command()
29664 sCtx.cColSep = ','; in do_meta_command()
29665 sCtx.cRowSep = '\n'; in do_meta_command()
29715 sCtx.cColSep = (u8)p->colSeparator[0]; in do_meta_command()
29716 sCtx.cRowSep = (u8)p->rowSeparator[0]; in do_meta_command()
29718 sCtx.zFile = zFile; in do_meta_command()
29719 sCtx.nLine = 1; in do_meta_command()
[all …]
H A Dsqlite3.c119282 RenameCtx sCtx;
119313 memset(&sCtx, 0, sizeof(sCtx));
119314 sCtx.iCol = ((iCol==pTab->iPKey) ? -1 : iCol);
119326 sWalker.u.pRename = &sCtx;
119328 sCtx.pTab = pTab;
119345 sCtx.pTab = sParse.pNewTable;
119349 &sParse, &sCtx, (void*)sParse.pNewTable->aCol[iCol].zCnName
119352 if( sCtx.iCol<0 ){
119353 renameTokenFind(&sParse, &sCtx, (void*)&sParse.pNewTable->iPKey);
119375 renameTokenFind(&sParse, &sCtx, (void*)&pFKey->aCol[i]);
[all …]