675
676
677
678
679
680
681
682
683
684
685
686
687
688
|
/* Get the report number
*/
rn = pState->rn;
/* Do initialization
*/
if( pState->nCount==0 ){
/* Figure out the number of columns, the column that determines background
** color, and whether or not this row of data is represented by multiple
** rows in the table.
*/
pState->nCol = 0;
pState->isMultirow = 0;
pState->iNewRow = -1;
|
>
>
>
>
>
|
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
|
/* Get the report number
*/
rn = pState->rn;
/* Do initialization
*/
if( pState->nCount==0 ){
/* Turn off the authorizer. It is no longer doing anything since the
** query has already been prepared.
*/
sqlite3_set_authorizer(g.db, 0, 0);
/* Figure out the number of columns, the column that determines background
** color, and whether or not this row of data is represented by multiple
** rows in the table.
*/
pState->nCol = 0;
pState->isMultirow = 0;
pState->iNewRow = -1;
|