Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c31043 ImportCtx sCtx; /* Reader context */ in dotCmdImport() local
31052 memset(&sCtx, 0, sizeof(sCtx)); in dotCmdImport()
31077 if( sCtx.cColSep==0 ) sCtx.cColSep = SEP_Unit[0]; in dotCmdImport()
31078 if( sCtx.cRowSep==0 ) sCtx.cRowSep = SEP_Record[0]; in dotCmdImport()
31081 if( sCtx.cColSep==0 ) sCtx.cColSep = ','; in dotCmdImport()
31082 if( sCtx.cRowSep==0 ) sCtx.cRowSep = '\n'; in dotCmdImport()
31085 sCtx.cUQEscape = azArg[++i][0]; in dotCmdImport()
31087 sCtx.cQEscape = azArg[++i][0]; in dotCmdImport()
31094 sCtx.cColSep = azArg[i][0]; in dotCmdImport()
31101 sCtx.cRowSep = azArg[i][0]; in dotCmdImport()
[all …]
H A Dsqlite3.c122084 RenameCtx sCtx; local
122115 memset(&sCtx, 0, sizeof(sCtx));
122116 sCtx.iCol = ((iCol==pTab->iPKey) ? -1 : iCol);
122128 sWalker.u.pRename = &sCtx;
122130 sCtx.pTab = pTab;
122147 sCtx.pTab = sParse.pNewTable;
122151 &sParse, &sCtx, (void*)sParse.pNewTable->aCol[iCol].zCnName
122154 if( sCtx.iCol<0 ){
122155 renameTokenFind(&sParse, &sCtx, (void*)&sParse.pNewTable->iPKey);
122177 renameTokenFind(&sParse, &sCtx, (void*)&pFKey->aCol[i]);
[all …]