Searched refs:sCtx (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 30980 ImportCtx sCtx; /* Reader context */ in dotCmdImport() local 30989 memset(&sCtx, 0, sizeof(sCtx)); in dotCmdImport() 31014 if( sCtx.cColSep==0 ) sCtx.cColSep = SEP_Unit[0]; in dotCmdImport() 31015 if( sCtx.cRowSep==0 ) sCtx.cRowSep = SEP_Record[0]; in dotCmdImport() 31018 if( sCtx.cColSep==0 ) sCtx.cColSep = ','; in dotCmdImport() 31019 if( sCtx.cRowSep==0 ) sCtx.cRowSep = '\n'; in dotCmdImport() 31022 sCtx.cUQEscape = azArg[++i][0]; in dotCmdImport() 31024 sCtx.cQEscape = azArg[++i][0]; in dotCmdImport() 31031 sCtx.cColSep = azArg[i][0]; in dotCmdImport() 31038 sCtx.cRowSep = azArg[i][0]; in dotCmdImport() [all …]
|
| H A D | sqlite3.c | 121888 RenameCtx sCtx; local 121919 memset(&sCtx, 0, sizeof(sCtx)); 121920 sCtx.iCol = ((iCol==pTab->iPKey) ? -1 : iCol); 121932 sWalker.u.pRename = &sCtx; 121934 sCtx.pTab = pTab; 121951 sCtx.pTab = sParse.pNewTable; 121955 &sParse, &sCtx, (void*)sParse.pNewTable->aCol[iCol].zCnName 121958 if( sCtx.iCol<0 ){ 121959 renameTokenFind(&sParse, &sCtx, (void*)&sParse.pNewTable->iPKey); 121981 renameTokenFind(&sParse, &sCtx, (void*)&pFKey->aCol[i]); [all …]
|