table.c.svn-base
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:5k
源码类别:

数据库系统

开发平台:

C/C++

  1. /*
  2. ** 2001 September 15
  3. **
  4. ** The author disclaims copyright to this source code.  In place of
  5. ** a legal notice, here is a blessing:
  6. **
  7. **    May you do good and not evil.
  8. **    May you find forgiveness for yourself and forgive others.
  9. **    May you share freely, never taking more than you give.
  10. **
  11. *************************************************************************
  12. ** This file contains the sqlite3_get_table() and sqlite3_free_table()
  13. ** interface routines.  These are just wrappers around the main
  14. ** interface routine of sqlite3_exec().
  15. **
  16. ** These routines are in a separate files so that they will not be linked
  17. ** if they are not used.
  18. */
  19. #include "sqliteInt.h"
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #ifndef SQLITE_OMIT_GET_TABLE
  23. /*
  24. ** This structure is used to pass data from sqlite3_get_table() through
  25. ** to the callback function is uses to build the result.
  26. */
  27. typedef struct TabResult {
  28.   char **azResult;
  29.   char *zErrMsg;
  30.   int nResult;
  31.   int nAlloc;
  32.   int nRow;
  33.   int nColumn;
  34.   int nData;
  35.   int rc;
  36. } TabResult;
  37. /*
  38. ** This routine is called once for each row in the result table.  Its job
  39. ** is to fill in the TabResult structure appropriately, allocating new
  40. ** memory as necessary.
  41. */
  42. static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
  43.   TabResult *p = (TabResult*)pArg;
  44.   int need;
  45.   int i;
  46.   char *z;
  47.   /* Make sure there is enough space in p->azResult to hold everything
  48.   ** we need to remember from this invocation of the callback.
  49.   */
  50.   if( p->nRow==0 && argv!=0 ){
  51.     need = nCol*2;
  52.   }else{
  53.     need = nCol;
  54.   }
  55.   if( p->nData + need >= p->nAlloc ){
  56.     char **azNew;
  57.     p->nAlloc = p->nAlloc*2 + need + 1;
  58.     azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc );
  59.     if( azNew==0 ) goto malloc_failed;
  60.     p->azResult = azNew;
  61.   }
  62.   /* If this is the first row, then generate an extra row containing
  63.   ** the names of all columns.
  64.   */
  65.   if( p->nRow==0 ){
  66.     p->nColumn = nCol;
  67.     for(i=0; i<nCol; i++){
  68.       z = sqlite3_mprintf("%s", colv[i]);
  69.       if( z==0 ) goto malloc_failed;
  70.       p->azResult[p->nData++] = z;
  71.     }
  72.   }else if( p->nColumn!=nCol ){
  73.     sqlite3_free(p->zErrMsg);
  74.     p->zErrMsg = sqlite3_mprintf(
  75.        "sqlite3_get_table() called with two or more incompatible queries"
  76.     );
  77.     p->rc = SQLITE_ERROR;
  78.     return 1;
  79.   }
  80.   /* Copy over the row data
  81.   */
  82.   if( argv!=0 ){
  83.     for(i=0; i<nCol; i++){
  84.       if( argv[i]==0 ){
  85.         z = 0;
  86.       }else{
  87.         int n = strlen(argv[i])+1;
  88.         z = sqlite3_malloc( n );
  89.         if( z==0 ) goto malloc_failed;
  90.         memcpy(z, argv[i], n);
  91.       }
  92.       p->azResult[p->nData++] = z;
  93.     }
  94.     p->nRow++;
  95.   }
  96.   return 0;
  97. malloc_failed:
  98.   p->rc = SQLITE_NOMEM;
  99.   return 1;
  100. }
  101. /*
  102. ** Query the database.  But instead of invoking a callback for each row,
  103. ** malloc() for space to hold the result and return the entire results
  104. ** at the conclusion of the call.
  105. **
  106. ** The result that is written to ***pazResult is held in memory obtained
  107. ** from malloc().  But the caller cannot free this memory directly.  
  108. ** Instead, the entire table should be passed to sqlite3_free_table() when
  109. ** the calling procedure is finished using it.
  110. */
  111. int sqlite3_get_table(
  112.   sqlite3 *db,                /* The database on which the SQL executes */
  113.   const char *zSql,           /* The SQL to be executed */
  114.   char ***pazResult,          /* Write the result table here */
  115.   int *pnRow,                 /* Write the number of rows in the result here */
  116.   int *pnColumn,              /* Write the number of columns of result here */
  117.   char **pzErrMsg             /* Write error messages here */
  118. ){
  119.   int rc;
  120.   TabResult res;
  121.   *pazResult = 0;
  122.   if( pnColumn ) *pnColumn = 0;
  123.   if( pnRow ) *pnRow = 0;
  124.   res.zErrMsg = 0;
  125.   res.nResult = 0;
  126.   res.nRow = 0;
  127.   res.nColumn = 0;
  128.   res.nData = 1;
  129.   res.nAlloc = 20;
  130.   res.rc = SQLITE_OK;
  131.   res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc );
  132.   if( res.azResult==0 ){
  133.      db->errCode = SQLITE_NOMEM;
  134.      return SQLITE_NOMEM;
  135.   }
  136.   res.azResult[0] = 0;
  137.   rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg);
  138.   assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
  139.   res.azResult[0] = (char*)(sqlite3_intptr_t)res.nData;
  140.   if( (rc&0xff)==SQLITE_ABORT ){
  141.     sqlite3_free_table(&res.azResult[1]);
  142.     if( res.zErrMsg ){
  143.       if( pzErrMsg ){
  144.         sqlite3_free(*pzErrMsg);
  145.         *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg);
  146.       }
  147.       sqlite3_free(res.zErrMsg);
  148.     }
  149.     db->errCode = res.rc;  /* Assume 32-bit assignment is atomic */
  150.     return res.rc;
  151.   }
  152.   sqlite3_free(res.zErrMsg);
  153.   if( rc!=SQLITE_OK ){
  154.     sqlite3_free_table(&res.azResult[1]);
  155.     return rc;
  156.   }
  157.   if( res.nAlloc>res.nData ){
  158.     char **azNew;
  159.     azNew = sqlite3_realloc( res.azResult, sizeof(char*)*(res.nData+1) );
  160.     if( azNew==0 ){
  161.       sqlite3_free_table(&res.azResult[1]);
  162.       db->errCode = SQLITE_NOMEM;
  163.       return SQLITE_NOMEM;
  164.     }
  165.     res.nAlloc = res.nData+1;
  166.     res.azResult = azNew;
  167.   }
  168.   *pazResult = &res.azResult[1];
  169.   if( pnColumn ) *pnColumn = res.nColumn;
  170.   if( pnRow ) *pnRow = res.nRow;
  171.   return rc;
  172. }
  173. /*
  174. ** This routine frees the space the sqlite3_get_table() malloced.
  175. */
  176. void sqlite3_free_table(
  177.   char **azResult            /* Result returned from from sqlite3_get_table() */
  178. ){
  179.   if( azResult ){
  180.     sqlite3_intptr_t i, n;
  181.     azResult--;
  182.     assert( azResult!=0 );
  183.     n = (sqlite3_intptr_t)azResult[0];
  184.     for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); }
  185.     sqlite3_free(azResult);
  186.   }
  187. }
  188. #endif /* SQLITE_OMIT_GET_TABLE */