results.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:31k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /* Module:          results.c
  2.  *
  3.  * Description:     This module contains functions related to 
  4.  *                  retrieving result information through the ODBC API.
  5.  *
  6.  * Classes:         n/a
  7.  *
  8.  * API functions:   SQLRowCount, SQLNumResultCols, SQLDescribeCol, SQLColAttributes,
  9.  *                  SQLGetData, SQLFetch, SQLExtendedFetch, 
  10.  *                  SQLMoreResults(NI), SQLSetPos, SQLSetScrollOptions(NI),
  11.  *                  SQLSetCursorName, SQLGetCursorName
  12.  *
  13.  * Comments:        See "notice.txt" for copyright and license information.
  14.  *
  15.  */
  16. #ifdef HAVE_CONFIG_H
  17. #include "config.h"
  18. #endif
  19. #include <string.h>
  20. #include "psqlodbc.h"
  21. #include "dlg_specific.h"
  22. #include "environ.h"
  23. #include "connection.h"
  24. #include "statement.h"
  25. #include "bind.h"
  26. #include "qresult.h"
  27. #include "convert.h"
  28. #include "pgtypes.h" 
  29. #include <stdio.h>
  30. #ifndef WIN32
  31. #include "iodbc.h"
  32. #include "isqlext.h"
  33. #else
  34. #include <windows.h>
  35. #include <sqlext.h>
  36. #endif
  37. extern GLOBAL_VALUES globals;
  38. RETCODE SQL_API SQLRowCount(
  39.         HSTMT      hstmt,
  40.         SDWORD FAR *pcrow)
  41. {
  42. static char *func="SQLRowCount";
  43. StatementClass *stmt = (StatementClass *) hstmt;
  44. QResultClass *res;
  45. char *msg, *ptr;
  46. if ( ! stmt) {
  47. SC_log_error(func, "", NULL);
  48. return SQL_INVALID_HANDLE;
  49. }
  50. if (stmt->manual_result) {
  51. if (pcrow)
  52. *pcrow = -1;
  53. return SQL_SUCCESS;
  54. }
  55. if(stmt->statement_type == STMT_TYPE_SELECT) {
  56. if (stmt->status == STMT_FINISHED) {
  57. res = SC_get_Result(stmt);
  58. if(res && pcrow) {
  59. *pcrow = globals.use_declarefetch ? -1 : QR_get_num_tuples(res);
  60. return SQL_SUCCESS;
  61. }
  62. }
  63. } else {
  64. res = SC_get_Result(stmt);
  65. if (res && pcrow) {
  66. msg = QR_get_command(res);
  67. mylog("*** msg = '%s'n", msg);
  68. trim(msg); // get rid of trailing spaces
  69. ptr = strrchr(msg, ' ');
  70. if (ptr) {
  71. *pcrow = atoi(ptr+1);
  72. mylog("**** SQLRowCount(): THE ROWS: *pcrow = %dn", *pcrow);
  73. }
  74. else {
  75. *pcrow = -1;
  76. mylog("**** SQLRowCount(): NO ROWS: *pcrow = %dn", *pcrow);
  77. }
  78. return SQL_SUCCESS;
  79. }
  80. }
  81. SC_log_error(func, "Bad return value", stmt);
  82. return SQL_ERROR;     
  83. }
  84. //      This returns the number of columns associated with the database
  85. //      attached to "hstmt".
  86. RETCODE SQL_API SQLNumResultCols(
  87.         HSTMT     hstmt,
  88.         SWORD FAR *pccol)
  89. {       
  90. static char *func="SQLNumResultCols";
  91. StatementClass *stmt = (StatementClass *) hstmt;
  92. QResultClass *result;
  93. char parse_ok;
  94. if ( ! stmt) {
  95. SC_log_error(func, "", NULL);
  96. return SQL_INVALID_HANDLE;
  97. }
  98. SC_clear_error(stmt);    
  99. parse_ok = FALSE;
  100. if (globals.parse && stmt->statement_type == STMT_TYPE_SELECT) {
  101. if (stmt->parse_status == STMT_PARSE_NONE) {
  102. mylog("SQLNumResultCols: calling parse_statement on stmt=%un", stmt);
  103. parse_statement(stmt);
  104. }
  105. if (stmt->parse_status != STMT_PARSE_FATAL) {
  106. parse_ok = TRUE;
  107. *pccol = stmt->nfld;
  108. mylog("PARSE: SQLNumResultCols: *pccol = %dn", *pccol);
  109. }
  110. }
  111. if ( ! parse_ok) {
  112. SC_pre_execute(stmt);       
  113. result = SC_get_Result(stmt);
  114. mylog("SQLNumResultCols: result = %u, status = %d, numcols = %dn", result, stmt->status, result != NULL ? QR_NumResultCols(result) : -1);
  115. if (( ! result) || ((stmt->status != STMT_FINISHED) && (stmt->status != STMT_PREMATURE)) ) {
  116. /* no query has been executed on this statement */
  117. stmt->errornumber = STMT_SEQUENCE_ERROR;
  118. stmt->errormsg = "No query has been executed with that handle";
  119. SC_log_error(func, "", stmt);
  120. return SQL_ERROR;
  121. }
  122. *pccol = QR_NumResultCols(result);
  123. }
  124. return SQL_SUCCESS;
  125. }
  126. //      -       -       -       -       -       -       -       -       -
  127. //      Return information about the database column the user wants
  128. //      information about.
  129. RETCODE SQL_API SQLDescribeCol(
  130.         HSTMT      hstmt,
  131.         UWORD      icol,
  132.         UCHAR  FAR *szColName,
  133.         SWORD      cbColNameMax,
  134.         SWORD  FAR *pcbColName,
  135.         SWORD  FAR *pfSqlType,
  136.         UDWORD FAR *pcbColDef,
  137.         SWORD  FAR *pibScale,
  138.         SWORD  FAR *pfNullable)
  139. {
  140. static char *func="SQLDescribeCol";
  141.     /* gets all the information about a specific column */
  142. StatementClass *stmt = (StatementClass *) hstmt;
  143. QResultClass *res;
  144. char *col_name = NULL;
  145. Int4 fieldtype = 0;
  146. int precision = 0;
  147. ConnInfo *ci;
  148. char parse_ok;
  149. char buf[255];
  150. int len = 0;
  151. RETCODE result;
  152. mylog("%s: entering...n", func);
  153.     if ( ! stmt) {
  154. SC_log_error(func, "", NULL);
  155.         return SQL_INVALID_HANDLE;
  156. }
  157. ci = &(stmt->hdbc->connInfo);
  158.     SC_clear_error(stmt);
  159. /* Dont check for bookmark column.  This is the responsibility
  160. of the driver manager.  
  161. */
  162. icol--; /* use zero based column numbers */
  163. parse_ok = FALSE;
  164. if (globals.parse && stmt->statement_type == STMT_TYPE_SELECT) {
  165. if (stmt->parse_status == STMT_PARSE_NONE) {
  166. mylog("SQLDescribeCol: calling parse_statement on stmt=%un", stmt);
  167. parse_statement(stmt);
  168. }
  169. mylog("PARSE: DescribeCol: icol=%d, stmt=%u, stmt->nfld=%d, stmt->fi=%un", icol, stmt, stmt->nfld, stmt->fi);
  170. if (stmt->parse_status != STMT_PARSE_FATAL && stmt->fi && stmt->fi[icol]) {
  171. if (icol >= stmt->nfld) {
  172. stmt->errornumber = STMT_INVALID_COLUMN_NUMBER_ERROR;
  173. stmt->errormsg = "Invalid column number in DescribeCol.";
  174. SC_log_error(func, "", stmt);
  175. return SQL_ERROR;
  176. }
  177. mylog("DescribeCol: getting info for icol=%dn", icol);
  178. fieldtype = stmt->fi[icol]->type;
  179. col_name = stmt->fi[icol]->name;
  180. precision = stmt->fi[icol]->precision;
  181. mylog("PARSE: fieldtype=%d, col_name='%s', precision=%dn", fieldtype, col_name, precision);
  182. if (fieldtype > 0)
  183. parse_ok = TRUE;
  184. }
  185. }
  186. /* If couldn't parse it OR the field being described was not parsed (i.e., because
  187. it was a function or expression, etc, then do it the old fashioned way.
  188. */
  189. if ( ! parse_ok) {
  190. SC_pre_execute(stmt);
  191. res = SC_get_Result(stmt);
  192. mylog("**** SQLDescribeCol: res = %u, stmt->status = %d, !finished=%d, !premature=%dn", res, stmt->status, stmt->status != STMT_FINISHED, stmt->status != STMT_PREMATURE);
  193. if ( (NULL == res) || ((stmt->status != STMT_FINISHED) && (stmt->status != STMT_PREMATURE))) {
  194. /* no query has been executed on this statement */
  195. stmt->errornumber = STMT_SEQUENCE_ERROR;
  196. stmt->errormsg = "No query has been assigned to this statement.";
  197. SC_log_error(func, "", stmt);
  198. return SQL_ERROR;
  199. }
  200. if (icol >= QR_NumResultCols(res)) {
  201. stmt->errornumber = STMT_INVALID_COLUMN_NUMBER_ERROR;
  202. stmt->errormsg = "Invalid column number in DescribeCol.";
  203. sprintf(buf, "Col#=%d, #Cols=%d", icol, QR_NumResultCols(res));
  204. SC_log_error(func, buf, stmt);
  205. return SQL_ERROR;
  206. }
  207. col_name = QR_get_fieldname(res, icol);
  208.         fieldtype = QR_get_field_type(res, icol);
  209. precision = pgtype_precision(stmt, fieldtype, icol, globals.unknown_sizes);  // atoi(ci->unknown_sizes)
  210. }
  211. mylog("describeCol: col %d fieldname = '%s'n", icol, col_name);
  212. mylog("describeCol: col %d fieldtype = %dn", icol, fieldtype);
  213. mylog("describeCol: col %d precision = %dn", icol, precision);
  214. result = SQL_SUCCESS;
  215. /************************/
  216. /* COLUMN NAME     */
  217. /************************/
  218. len = strlen(col_name);
  219. if (pcbColName)
  220. *pcbColName = len;
  221. if (szColName) {
  222. strncpy_null(szColName, col_name, cbColNameMax);
  223. if (len >= cbColNameMax)  {
  224. result = SQL_SUCCESS_WITH_INFO;
  225. stmt->errornumber = STMT_TRUNCATED;
  226. stmt->errormsg = "The buffer was too small for the result.";
  227. }
  228.     }
  229. /************************/
  230. /* SQL TYPE        */
  231. /************************/
  232.     if (pfSqlType) {
  233.         *pfSqlType = pgtype_to_sqltype(stmt, fieldtype);
  234. mylog("describeCol: col %d *pfSqlType = %dn", icol, *pfSqlType);
  235. }
  236. /************************/
  237. /* PRECISION       */
  238. /************************/
  239.     if (pcbColDef) {
  240. if ( precision < 0)
  241. precision = 0; // "I dont know"
  242. *pcbColDef = precision;
  243. mylog("describeCol: col %d  *pcbColDef = %dn", icol, *pcbColDef);
  244. }
  245. /************************/
  246. /* SCALE           */
  247. /************************/
  248.     if (pibScale) {
  249.         Int2 scale;
  250.         scale = pgtype_scale(stmt, fieldtype);
  251.         if(scale == -1) { scale = 0; }
  252.         
  253.         *pibScale = scale;
  254. mylog("describeCol: col %d  *pibScale = %dn", icol, *pibScale);
  255.     }
  256. /************************/
  257. /* NULLABILITY     */
  258. /************************/
  259.     if (pfNullable) {
  260. *pfNullable = (parse_ok) ? stmt->fi[icol]->nullable : pgtype_nullable(stmt, fieldtype);
  261. mylog("describeCol: col %d  *pfNullable = %dn", icol, *pfNullable);
  262.     }
  263.     return result;
  264. }
  265. //      Returns result column descriptor information for a result set.
  266. RETCODE SQL_API SQLColAttributes(
  267.         HSTMT      hstmt,
  268.         UWORD      icol,
  269.         UWORD      fDescType,
  270.         PTR        rgbDesc,
  271.         SWORD      cbDescMax,
  272.         SWORD  FAR *pcbDesc,
  273.         SDWORD FAR *pfDesc)
  274. {
  275. static char *func = "SQLColAttributes";
  276. StatementClass *stmt = (StatementClass *) hstmt;
  277. Int4 field_type = 0;
  278. ConnInfo *ci;
  279. int unknown_sizes;
  280. int cols = 0;
  281. char parse_ok;
  282. RETCODE result;
  283. char *p = NULL;
  284. int len = 0, value = 0;
  285. mylog("%s: entering...n", func);
  286. if( ! stmt) {
  287. SC_log_error(func, "", NULL);
  288. return SQL_INVALID_HANDLE;
  289. }
  290. ci = &(stmt->hdbc->connInfo);
  291. /* Dont check for bookmark column.  This is the responsibility
  292. of the driver manager.  For certain types of arguments, the column
  293. number is ignored anyway, so it may be 0.
  294. */
  295. icol--;
  296. unknown_sizes = globals.unknown_sizes;          // atoi(ci->unknown_sizes);
  297. if (unknown_sizes == UNKNOWNS_AS_DONTKNOW) // not appropriate for SQLColAttributes()
  298. unknown_sizes = UNKNOWNS_AS_MAX;
  299. parse_ok = FALSE;
  300. if (globals.parse && stmt->statement_type == STMT_TYPE_SELECT) {
  301. if (stmt->parse_status == STMT_PARSE_NONE) {
  302. mylog("SQLColAttributes: calling parse_statementn");
  303. parse_statement(stmt);
  304. }
  305. cols = stmt->nfld;
  306. /* Column Count is a special case.  The Column number is ignored
  307. in this case.
  308. */
  309. if (fDescType == SQL_COLUMN_COUNT) {
  310. if (pfDesc)
  311. *pfDesc = cols;
  312. return SQL_SUCCESS;
  313. }
  314. if (stmt->parse_status != STMT_PARSE_FATAL && stmt->fi && stmt->fi[icol]) {
  315. if (icol >= cols) {
  316. stmt->errornumber = STMT_INVALID_COLUMN_NUMBER_ERROR;
  317. stmt->errormsg = "Invalid column number in DescribeCol.";
  318. SC_log_error(func, "", stmt);
  319. return SQL_ERROR;
  320. }
  321. field_type = stmt->fi[icol]->type;
  322. if (field_type > 0)
  323. parse_ok = TRUE;
  324. }
  325. }
  326. if ( ! parse_ok) {
  327. SC_pre_execute(stmt);       
  328. mylog("**** SQLColAtt: result = %u, status = %d, numcols = %dn", stmt->result, stmt->status, stmt->result != NULL ? QR_NumResultCols(stmt->result) : -1);
  329. if ( (NULL == stmt->result) || ((stmt->status != STMT_FINISHED) && (stmt->status != STMT_PREMATURE)) ) {
  330. stmt->errormsg = "Can't get column attributes: no result found.";
  331. stmt->errornumber = STMT_SEQUENCE_ERROR;
  332. SC_log_error(func, "", stmt);
  333. return SQL_ERROR;
  334. }
  335. cols = QR_NumResultCols(stmt->result);
  336. /* Column Count is a special case.  The Column number is ignored
  337. in this case.
  338. */
  339. if (fDescType == SQL_COLUMN_COUNT) {
  340. if (pfDesc)
  341. *pfDesc = cols;
  342. return SQL_SUCCESS;
  343. }
  344. if (icol >= cols) {
  345. stmt->errornumber = STMT_INVALID_COLUMN_NUMBER_ERROR;
  346. stmt->errormsg = "Invalid column number in DescribeCol.";
  347. SC_log_error(func, "", stmt);
  348. return SQL_ERROR;
  349. }
  350. field_type = QR_get_field_type(stmt->result, icol);
  351. }
  352. mylog("colAttr: col %d field_type = %dn", icol, field_type);
  353. switch(fDescType) {
  354. case SQL_COLUMN_AUTO_INCREMENT:
  355. value  = pgtype_auto_increment(stmt, field_type);
  356. if (value == -1)  /*  non-numeric becomes FALSE (ODBC Doc) */
  357. value = FALSE;
  358. break;
  359. case SQL_COLUMN_CASE_SENSITIVE:
  360. value = pgtype_case_sensitive(stmt, field_type);
  361. break;
  362. /*  This special case is handled above.
  363. case SQL_COLUMN_COUNT: 
  364. */
  365.     case SQL_COLUMN_DISPLAY_SIZE:
  366. value = (parse_ok) ? stmt->fi[icol]->display_size : pgtype_display_size(stmt, field_type, icol, unknown_sizes);
  367. mylog("SQLColAttributes: col %d, display_size= %dn", icol, value);
  368.         break;
  369. case SQL_COLUMN_LABEL:
  370. if (parse_ok && stmt->fi[icol]->alias[0] != '') {
  371. p = stmt->fi[icol]->alias;
  372. mylog("SQLColAttr: COLUMN_LABEL = '%s'n", p);
  373. break;
  374. } // otherwise same as column name -- FALL THROUGH!!!
  375. case SQL_COLUMN_NAME:
  376. p = (parse_ok) ? stmt->fi[icol]->name : QR_get_fieldname(stmt->result, icol);
  377. mylog("SQLColAttr: COLUMN_NAME = '%s'n", p);
  378. break;
  379. case SQL_COLUMN_LENGTH:
  380. value = (parse_ok) ? stmt->fi[icol]->length :  pgtype_length(stmt, field_type, icol, unknown_sizes); 
  381. mylog("SQLColAttributes: col %d, length = %dn", icol, value);
  382.         break;
  383. case SQL_COLUMN_MONEY:
  384. value = pgtype_money(stmt, field_type);
  385. break;
  386. case SQL_COLUMN_NULLABLE:
  387. value = (parse_ok) ? stmt->fi[icol]->nullable : pgtype_nullable(stmt, field_type);
  388. break;
  389. case SQL_COLUMN_OWNER_NAME:
  390. p = "";
  391. break;
  392. case SQL_COLUMN_PRECISION:
  393. value = (parse_ok) ? stmt->fi[icol]->precision : pgtype_precision(stmt, field_type, icol, unknown_sizes);
  394. mylog("SQLColAttributes: col %d, precision = %dn", icol, value);
  395.         break;
  396. case SQL_COLUMN_QUALIFIER_NAME:
  397. p = "";
  398. break;
  399. case SQL_COLUMN_SCALE:
  400. value = pgtype_scale(stmt, field_type);
  401. break;
  402. case SQL_COLUMN_SEARCHABLE:
  403. value = pgtype_searchable(stmt, field_type);
  404. break;
  405.     case SQL_COLUMN_TABLE_NAME:
  406. p = (parse_ok && stmt->fi[icol]->ti) ? stmt->fi[icol]->ti->name : "";
  407. mylog("SQLColAttr: TABLE_NAME = '%s'n", p);
  408.         break;
  409. case SQL_COLUMN_TYPE:
  410. value = pgtype_to_sqltype(stmt, field_type);
  411. break;
  412. case SQL_COLUMN_TYPE_NAME:
  413. p = pgtype_to_name(stmt, field_type);
  414. break;
  415. case SQL_COLUMN_UNSIGNED:
  416. value = pgtype_unsigned(stmt, field_type);
  417. if(value == -1) /* non-numeric becomes TRUE (ODBC Doc) */
  418. value = TRUE;
  419. break;
  420. case SQL_COLUMN_UPDATABLE:
  421. /* Neither Access or Borland care about this.
  422. if (field_type == PG_TYPE_OID)
  423. *pfDesc = SQL_ATTR_READONLY;
  424. else
  425. */
  426. value = SQL_ATTR_WRITE;
  427. mylog("SQLColAttr: UPDATEABLE = %dn", value);
  428. break;
  429.     }
  430. result = SQL_SUCCESS;
  431. if (p) {  /* char/binary data */
  432. len = strlen(p);
  433. if (rgbDesc) {
  434. strncpy_null((char *)rgbDesc, p, (size_t)cbDescMax);
  435. if (len >= cbDescMax)  {
  436. result = SQL_SUCCESS_WITH_INFO;
  437. stmt->errornumber = STMT_TRUNCATED;
  438. stmt->errormsg = "The buffer was too small for the result.";
  439. }
  440. }
  441. if (pcbDesc) 
  442. *pcbDesc = len;
  443. }
  444. else { /* numeric data */
  445. if (pfDesc)
  446. *pfDesc = value;
  447. }
  448.     return result;
  449. }
  450. //      Returns result data for a single column in the current row.
  451. RETCODE SQL_API SQLGetData(
  452.         HSTMT      hstmt,
  453.         UWORD      icol,
  454.         SWORD      fCType,
  455.         PTR        rgbValue,
  456.         SDWORD     cbValueMax,
  457.         SDWORD FAR *pcbValue)
  458. {
  459. static char *func="SQLGetData";
  460. QResultClass *res;
  461. StatementClass *stmt = (StatementClass *) hstmt;
  462. int num_cols, num_rows;
  463. Int4 field_type;
  464. void *value;
  465. int result;
  466. char get_bookmark = FALSE;
  467. mylog("SQLGetData: enter, stmt=%un", stmt);
  468.     if( ! stmt) {
  469. SC_log_error(func, "", NULL);
  470.         return SQL_INVALID_HANDLE;
  471.     }
  472. res = stmt->result;
  473.     if (STMT_EXECUTING == stmt->status) {
  474.         stmt->errormsg = "Can't get data while statement is still executing.";
  475.         stmt->errornumber = STMT_SEQUENCE_ERROR;
  476. SC_log_error(func, "", stmt);
  477.         return SQL_ERROR;
  478.     }
  479.     if (stmt->status != STMT_FINISHED) {
  480.         stmt->errornumber = STMT_STATUS_ERROR;
  481.         stmt->errormsg = "GetData can only be called after the successful execution on a SQL statement";
  482. SC_log_error(func, "", stmt);
  483.         return SQL_ERROR;
  484.     }
  485.     if (icol == 0) {
  486. if (stmt->options.use_bookmarks == SQL_UB_OFF) {
  487. stmt->errornumber = STMT_COLNUM_ERROR;
  488. stmt->errormsg = "Attempt to retrieve bookmark with bookmark usage disabled";
  489. SC_log_error(func, "", stmt);
  490. return SQL_ERROR;
  491. }
  492. /* Make sure it is the bookmark data type */
  493. if (fCType != SQL_C_BOOKMARK) {
  494. stmt->errormsg = "Column 0 is not of type SQL_C_BOOKMARK";
  495. stmt->errornumber = STMT_PROGRAM_TYPE_OUT_OF_RANGE;
  496. SC_log_error(func, "", stmt);
  497. return SQL_ERROR;
  498. }
  499. get_bookmark = TRUE;
  500.     }
  501. else {
  502. // use zero-based column numbers
  503. icol--;
  504. // make sure the column number is valid
  505. num_cols = QR_NumResultCols(res);
  506. if (icol >= num_cols) {
  507. stmt->errormsg = "Invalid column number.";
  508. stmt->errornumber = STMT_INVALID_COLUMN_NUMBER_ERROR;
  509. SC_log_error(func, "", stmt);
  510. return SQL_ERROR;
  511. }
  512. }
  513. if ( stmt->manual_result || ! globals.use_declarefetch) {
  514. // make sure we're positioned on a valid row
  515. num_rows = QR_get_num_tuples(res);
  516. if((stmt->currTuple < 0) ||
  517.    (stmt->currTuple >= num_rows)) {
  518. stmt->errormsg = "Not positioned on a valid row for GetData.";
  519. stmt->errornumber = STMT_INVALID_CURSOR_STATE_ERROR;
  520. SC_log_error(func, "", stmt);
  521. return SQL_ERROR;
  522. }
  523. mylog("     num_rows = %dn", num_rows);
  524. if ( ! get_bookmark) {
  525. if ( stmt->manual_result) {
  526. value = QR_get_value_manual(res, stmt->currTuple, icol);
  527. }
  528. else {
  529. value = QR_get_value_backend_row(res, stmt->currTuple, icol);
  530. }
  531. mylog("     value = '%s'n", value);
  532. }
  533. }
  534. else { /* its a SOCKET result (backend data) */
  535. if (stmt->currTuple == -1 || ! res || ! res->tupleField) {
  536. stmt->errormsg = "Not positioned on a valid row for GetData.";
  537. stmt->errornumber = STMT_INVALID_CURSOR_STATE_ERROR;
  538. SC_log_error(func, "", stmt);
  539. return SQL_ERROR;
  540. }
  541. if ( ! get_bookmark)
  542. value = QR_get_value_backend(res, icol);
  543. mylog("  socket: value = '%s'n", value);
  544. }
  545. if ( get_bookmark) {
  546. *((UDWORD *) rgbValue) = SC_get_bookmark(stmt);
  547. if (pcbValue)
  548. *pcbValue = 4;
  549. return SQL_SUCCESS;
  550. }
  551. field_type = QR_get_field_type(res, icol);
  552. mylog("**** SQLGetData: icol = %d, fCType = %d, field_type = %d, value = '%s'n", icol, fCType, field_type, value);
  553. stmt->current_col = icol;
  554.     result = copy_and_convert_field(stmt, field_type, value, 
  555.                                     fCType, rgbValue, cbValueMax, pcbValue);
  556. stmt->current_col = -1;
  557. switch(result) {
  558. case COPY_OK:
  559. return SQL_SUCCESS;
  560. case COPY_UNSUPPORTED_TYPE:
  561. stmt->errormsg = "Received an unsupported type from Postgres.";
  562. stmt->errornumber = STMT_RESTRICTED_DATA_TYPE_ERROR;
  563. SC_log_error(func, "", stmt);
  564. return SQL_ERROR;
  565. case COPY_UNSUPPORTED_CONVERSION:
  566. stmt->errormsg = "Couldn't handle the necessary data type conversion.";
  567. stmt->errornumber = STMT_RESTRICTED_DATA_TYPE_ERROR;
  568. SC_log_error(func, "", stmt);
  569. return SQL_ERROR;
  570. case COPY_RESULT_TRUNCATED:
  571. stmt->errornumber = STMT_TRUNCATED;
  572. stmt->errormsg = "The buffer was too small for the result.";
  573. return SQL_SUCCESS_WITH_INFO;
  574. case COPY_GENERAL_ERROR: /* error msg already filled in */
  575. SC_log_error(func, "", stmt);
  576. return SQL_ERROR;
  577. case COPY_NO_DATA_FOUND:
  578. /* SC_log_error(func, "no data found", stmt); */
  579. return SQL_NO_DATA_FOUND;
  580.     default:
  581.         stmt->errormsg = "Unrecognized return value from copy_and_convert_field.";
  582.         stmt->errornumber = STMT_INTERNAL_ERROR;
  583. SC_log_error(func, "", stmt);
  584.         return SQL_ERROR;
  585.     }
  586. }
  587. //      Returns data for bound columns in the current row ("hstmt->iCursor"),
  588. //      advances the cursor.
  589. RETCODE SQL_API SQLFetch(
  590.         HSTMT   hstmt)
  591. {
  592. static char *func = "SQLFetch";
  593. StatementClass *stmt = (StatementClass *) hstmt;   
  594. QResultClass *res;
  595. mylog("SQLFetch: stmt = %u, stmt->result= %un", stmt, stmt->result);
  596. if ( ! stmt) {
  597. SC_log_error(func, "", NULL);
  598. return SQL_INVALID_HANDLE;
  599. }
  600. SC_clear_error(stmt);
  601. if ( ! (res = stmt->result)) {
  602. stmt->errormsg = "Null statement result in SQLFetch.";
  603. stmt->errornumber = STMT_SEQUENCE_ERROR;
  604. SC_log_error(func, "", stmt);
  605. return SQL_ERROR;
  606. }
  607. /* Not allowed to bind a bookmark column when using SQLFetch. */
  608. if ( stmt->bookmark.buffer) {
  609. stmt->errornumber = STMT_COLNUM_ERROR;
  610. stmt->errormsg = "Not allowed to bind a bookmark column when using SQLFetch";
  611. SC_log_error(func, "", stmt);
  612. return SQL_ERROR;
  613. }
  614. if (stmt->status == STMT_EXECUTING) {
  615. stmt->errormsg = "Can't fetch while statement is still executing.";
  616. stmt->errornumber = STMT_SEQUENCE_ERROR;
  617. SC_log_error(func, "", stmt);
  618. return SQL_ERROR;
  619. }
  620. if (stmt->status != STMT_FINISHED) {
  621. stmt->errornumber = STMT_STATUS_ERROR;
  622. stmt->errormsg = "Fetch can only be called after the successful execution on a SQL statement";
  623. SC_log_error(func, "", stmt);
  624. return SQL_ERROR;
  625. }
  626. if (stmt->bindings == NULL) {
  627. // just to avoid a crash if the user insists on calling this
  628. // function even if SQL_ExecDirect has reported an Error
  629. stmt->errormsg = "Bindings were not allocated properly.";
  630. stmt->errornumber = STMT_SEQUENCE_ERROR;
  631. SC_log_error(func, "", stmt);
  632. return SQL_ERROR;
  633. }
  634. QR_set_rowset_size(res, 1);
  635. QR_inc_base(res, stmt->last_fetch_count);
  636. return SC_fetch(stmt);
  637. }
  638. //      This fetchs a block of data (rowset).
  639. RETCODE SQL_API SQLExtendedFetch(
  640.         HSTMT      hstmt,
  641.         UWORD      fFetchType,
  642.         SDWORD     irow,
  643.         UDWORD FAR *pcrow,
  644.         UWORD  FAR *rgfRowStatus)
  645. {
  646. static char *func = "SQLExtendedFetch";
  647. StatementClass *stmt = (StatementClass *) hstmt;
  648. QResultClass *res;
  649. int num_tuples, i, save_rowset_size;
  650. RETCODE result;
  651. char truncated, error;
  652. mylog("SQLExtendedFetch: stmt=%un", stmt);
  653. if ( ! stmt) {
  654. SC_log_error(func, "", NULL);
  655. return SQL_INVALID_HANDLE;
  656. }
  657. if ( globals.use_declarefetch && ! stmt->manual_result) {
  658. if ( fFetchType != SQL_FETCH_NEXT) {
  659. stmt->errornumber = STMT_NOT_IMPLEMENTED_ERROR;
  660. stmt->errormsg = "Unsupported fetch type for SQLExtendedFetch with UseDeclareFetch option.";
  661. return SQL_ERROR;
  662. }
  663. }
  664. SC_clear_error(stmt);
  665. if ( ! (res = stmt->result)) {
  666. stmt->errormsg = "Null statement result in SQLExtendedFetch.";
  667. stmt->errornumber = STMT_SEQUENCE_ERROR;
  668. SC_log_error(func, "", stmt);
  669. return SQL_ERROR;
  670. }
  671. /* If a bookmark colunmn is bound but bookmark usage is off, then error */
  672. if (stmt->bookmark.buffer && stmt->options.use_bookmarks == SQL_UB_OFF) {
  673. stmt->errornumber = STMT_COLNUM_ERROR;
  674. stmt->errormsg = "Attempt to retrieve bookmark with bookmark usage disabled";
  675. SC_log_error(func, "", stmt);
  676. return SQL_ERROR;
  677. }
  678. if (stmt->status == STMT_EXECUTING) {
  679. stmt->errormsg = "Can't fetch while statement is still executing.";
  680. stmt->errornumber = STMT_SEQUENCE_ERROR;
  681. SC_log_error(func, "", stmt);
  682. return SQL_ERROR;
  683. }
  684. if (stmt->status != STMT_FINISHED) {
  685. stmt->errornumber = STMT_STATUS_ERROR;
  686. stmt->errormsg = "ExtendedFetch can only be called after the successful execution on a SQL statement";
  687. SC_log_error(func, "", stmt);
  688. return SQL_ERROR;
  689. }
  690. if (stmt->bindings == NULL) {
  691. // just to avoid a crash if the user insists on calling this
  692. // function even if SQL_ExecDirect has reported an Error
  693. stmt->errormsg = "Bindings were not allocated properly.";
  694. stmt->errornumber = STMT_SEQUENCE_ERROR;
  695. SC_log_error(func, "", stmt);
  696. return SQL_ERROR;
  697. }
  698. /* Initialize to no rows fetched */
  699. if (rgfRowStatus)
  700. for (i = 0; i < stmt->options.rowset_size; i++)
  701. *(rgfRowStatus + i) = SQL_ROW_NOROW;
  702. if (pcrow)
  703. *pcrow = 0;
  704. num_tuples = QR_get_num_tuples(res);
  705. /* Save and discard the saved rowset size */
  706. save_rowset_size = stmt->save_rowset_size;
  707. stmt->save_rowset_size = -1;
  708. switch (fFetchType)  {
  709. case SQL_FETCH_NEXT:
  710. /* From the odbc spec... If positioned before the start of the RESULT SET,
  711. then this should be equivalent to SQL_FETCH_FIRST.
  712. */
  713. if (stmt->rowset_start < 0)
  714. stmt->rowset_start = 0;
  715. else {
  716. stmt->rowset_start += (save_rowset_size > 0 ? save_rowset_size : stmt->options.rowset_size);
  717. }
  718. mylog("SQL_FETCH_NEXT: num_tuples=%d, currtuple=%dn", num_tuples, stmt->currTuple);
  719. break;
  720. case SQL_FETCH_PRIOR:
  721. mylog("SQL_FETCH_PRIOR: num_tuples=%d, currtuple=%dn", num_tuples, stmt->currTuple);
  722. /* From the odbc spec... If positioned after the end of the RESULT SET,
  723. then this should be equivalent to SQL_FETCH_LAST.
  724. */
  725. if (stmt->rowset_start >= num_tuples) {
  726. stmt->rowset_start = num_tuples <= 0 ? 0 : (num_tuples - stmt->options.rowset_size);
  727. }
  728. else {
  729. stmt->rowset_start -= stmt->options.rowset_size;
  730. }
  731. break;
  732. case SQL_FETCH_FIRST:
  733. mylog("SQL_FETCH_FIRST: num_tuples=%d, currtuple=%dn", num_tuples, stmt->currTuple);
  734. stmt->rowset_start = 0;
  735. break;
  736. case SQL_FETCH_LAST:
  737. mylog("SQL_FETCH_LAST: num_tuples=%d, currtuple=%dn", num_tuples, stmt->currTuple);
  738. stmt->rowset_start = num_tuples <= 0 ? 0 : (num_tuples - stmt->options.rowset_size) ;
  739. break;
  740. case SQL_FETCH_ABSOLUTE:
  741. mylog("SQL_FETCH_ABSOLUTE: num_tuples=%d, currtuple=%d, irow=%dn", num_tuples, stmt->currTuple, irow);
  742. /* Position before result set, but dont fetch anything */
  743. if (irow == 0) {
  744. stmt->rowset_start = -1;
  745. stmt->currTuple = -1;
  746. return SQL_NO_DATA_FOUND;
  747. }
  748. /* Position before the desired row */
  749. else if (irow > 0) {
  750. stmt->rowset_start = irow - 1;
  751. }
  752. /* Position with respect to the end of the result set */
  753. else {
  754. stmt->rowset_start = num_tuples + irow;
  755. }    
  756. break;
  757. case SQL_FETCH_RELATIVE:
  758. /* Refresh the current rowset -- not currently implemented, but lie anyway */
  759. if (irow == 0) {
  760. break;
  761. }
  762. stmt->rowset_start += irow;
  763. break;
  764. case SQL_FETCH_BOOKMARK:
  765. stmt->rowset_start = irow - 1;
  766. break;
  767. default:
  768. SC_log_error(func, "Unsupported SQLExtendedFetch Direction", stmt);
  769. return SQL_ERROR;   
  770. }           
  771. /***********************************/
  772. /* CHECK FOR PROPER CURSOR STATE  */
  773. /***********************************/
  774. /* Handle Declare Fetch style specially because the end is not really the end... */
  775. if ( globals.use_declarefetch && ! stmt->manual_result) {
  776. if (QR_end_tuples(res)) {
  777. return SQL_NO_DATA_FOUND;
  778. }
  779. }
  780. else {
  781. /* If *new* rowset is after the result_set, return no data found */
  782. if (stmt->rowset_start >= num_tuples) {
  783. stmt->rowset_start = num_tuples;
  784. return SQL_NO_DATA_FOUND;
  785. }
  786. }
  787. /* If *new* rowset is prior to result_set, return no data found */
  788. if (stmt->rowset_start < 0) {
  789. if (stmt->rowset_start + stmt->options.rowset_size <= 0) {
  790. stmt->rowset_start = -1;
  791. return SQL_NO_DATA_FOUND;
  792. }
  793. else { /* overlap with beginning of result set, so get first rowset */
  794. stmt->rowset_start = 0;
  795. }
  796. }
  797. /* currTuple is always 1 row prior to the rowset */
  798. stmt->currTuple = stmt->rowset_start - 1;
  799. /* increment the base row in the tuple cache */
  800. QR_set_rowset_size(res, stmt->options.rowset_size);
  801. QR_inc_base(res, stmt->last_fetch_count);
  802. /* Physical Row advancement occurs for each row fetched below */
  803. mylog("SQLExtendedFetch: new currTuple = %dn", stmt->currTuple);
  804. truncated = error = FALSE;
  805. for (i = 0; i < stmt->options.rowset_size; i++) {
  806. stmt->bind_row = i; // set the binding location
  807. result = SC_fetch(stmt);
  808. /* Determine Function status */
  809. if (result == SQL_NO_DATA_FOUND)
  810. break;
  811. else if (result == SQL_SUCCESS_WITH_INFO)
  812. truncated = TRUE;
  813. else if (result == SQL_ERROR)
  814. error = TRUE;
  815. /* Determine Row Status */
  816. if (rgfRowStatus) {
  817. if (result == SQL_ERROR) 
  818. *(rgfRowStatus + i) = SQL_ROW_ERROR;
  819. else
  820. *(rgfRowStatus + i)= SQL_ROW_SUCCESS;
  821. }
  822. }
  823. /* Save the fetch count for SQLSetPos */
  824. stmt->last_fetch_count= i;
  825. /* Reset next binding row */
  826. stmt->bind_row = 0;
  827. /* Move the cursor position to the first row in the result set. */
  828. stmt->currTuple = stmt->rowset_start;
  829. /* For declare/fetch, need to reset cursor to beginning of rowset */
  830. if (globals.use_declarefetch && ! stmt->manual_result) {
  831. QR_set_position(res, 0);
  832. }
  833. /* Set the number of rows retrieved */
  834. if (pcrow)
  835. *pcrow = i;
  836. if (i == 0)
  837. return SQL_NO_DATA_FOUND; /* Only DeclareFetch should wind up here */
  838. else if (error)
  839. return SQL_ERROR;
  840. else if (truncated)
  841. return SQL_SUCCESS_WITH_INFO;
  842. else
  843. return SQL_SUCCESS;
  844. }
  845. //      This determines whether there are more results sets available for
  846. //      the "hstmt".
  847. /* CC: return SQL_NO_DATA_FOUND since we do not support multiple result sets */
  848. RETCODE SQL_API SQLMoreResults(
  849.         HSTMT   hstmt)
  850. {
  851. return SQL_NO_DATA_FOUND;
  852. }
  853. //     This positions the cursor within a rowset, that was positioned using SQLExtendedFetch.
  854. //    This will be useful (so far) only when using SQLGetData after SQLExtendedFetch.
  855. RETCODE SQL_API SQLSetPos(
  856.         HSTMT   hstmt,
  857.         UWORD   irow,
  858.         UWORD   fOption,
  859.         UWORD   fLock)
  860. {
  861. static char *func = "SQLSetPos";
  862. StatementClass *stmt = (StatementClass *) hstmt;
  863. QResultClass *res;
  864. int num_cols, i;
  865. BindInfoClass *bindings = stmt->bindings;
  866. if ( ! stmt) {
  867. SC_log_error(func, "", NULL);
  868. return SQL_INVALID_HANDLE;
  869. }
  870. if (fOption != SQL_POSITION && fOption != SQL_REFRESH) {
  871. stmt->errornumber = STMT_NOT_IMPLEMENTED_ERROR;
  872. stmt->errormsg = "Only SQL_POSITION/REFRESH is supported for SQLSetPos";
  873. SC_log_error(func, "", stmt);
  874. return SQL_ERROR;
  875. }
  876. if ( ! (res = stmt->result)) {
  877. stmt->errormsg = "Null statement result in SQLSetPos.";
  878. stmt->errornumber = STMT_SEQUENCE_ERROR;
  879. SC_log_error(func, "", stmt);
  880. return SQL_ERROR;
  881. }
  882. num_cols = QR_NumResultCols(res);
  883. if (irow == 0) {
  884. stmt->errornumber = STMT_ROW_OUT_OF_RANGE;
  885. stmt->errormsg = "Driver does not support Bulk operations.";
  886. SC_log_error(func, "", stmt);
  887. return SQL_ERROR;
  888. }
  889. if (irow > stmt->last_fetch_count) {
  890. stmt->errornumber = STMT_ROW_OUT_OF_RANGE;
  891. stmt->errormsg = "Row value out of range";
  892. SC_log_error(func, "", stmt);
  893. return SQL_ERROR;
  894. }
  895. irow--;
  896. /* Reset for SQLGetData */
  897. for (i = 0; i < num_cols; i++)
  898. bindings[i].data_left = -1;
  899. QR_set_position(res, irow);
  900. stmt->currTuple = stmt->rowset_start + irow;
  901. return SQL_SUCCESS;
  902. }
  903. //      Sets options that control the behavior of cursors.
  904. RETCODE SQL_API SQLSetScrollOptions(
  905.         HSTMT      hstmt,
  906.         UWORD      fConcurrency,
  907.         SDWORD  crowKeyset,
  908.         UWORD      crowRowset)
  909. {
  910. static char *func = "SQLSetScrollOptions";
  911. SC_log_error(func, "Function not implemented", (StatementClass *) hstmt);
  912. return SQL_ERROR;
  913. }
  914. //      Set the cursor name on a statement handle
  915. RETCODE SQL_API SQLSetCursorName(
  916.         HSTMT     hstmt,
  917.         UCHAR FAR *szCursor,
  918.         SWORD     cbCursor)
  919. {
  920. static char *func="SQLSetCursorName";
  921. StatementClass *stmt = (StatementClass *) hstmt;
  922. int len;
  923. mylog("SQLSetCursorName: hstmt=%u, szCursor=%u, cbCursorMax=%dn", hstmt, szCursor, cbCursor);
  924. if ( ! stmt) {
  925. SC_log_error(func, "", NULL);
  926. return SQL_INVALID_HANDLE;
  927. }
  928. len = (cbCursor == SQL_NTS) ? strlen(szCursor) : cbCursor;
  929. if (len <= 0 || len > sizeof(stmt->cursor_name) - 1) {
  930. stmt->errornumber = STMT_INVALID_CURSOR_NAME;
  931. stmt->errormsg = "Invalid Cursor Name";
  932. SC_log_error(func, "", stmt);
  933. return SQL_ERROR;
  934. }
  935. strncpy_null(stmt->cursor_name, szCursor, len+1);
  936. return SQL_SUCCESS;
  937. }
  938. //      Return the cursor name for a statement handle
  939. RETCODE SQL_API SQLGetCursorName(
  940.         HSTMT     hstmt,
  941.         UCHAR FAR *szCursor,
  942.         SWORD     cbCursorMax,
  943.         SWORD FAR *pcbCursor)
  944. {
  945. static char *func="SQLGetCursorName";
  946. StatementClass *stmt = (StatementClass *) hstmt;
  947. int len = 0;
  948. RETCODE result;
  949. mylog("SQLGetCursorName: hstmt=%u, szCursor=%u, cbCursorMax=%d, pcbCursor=%un", hstmt, szCursor, cbCursorMax, pcbCursor);
  950. if ( ! stmt) {
  951. SC_log_error(func, "", NULL);
  952. return SQL_INVALID_HANDLE;
  953. }
  954. if ( stmt->cursor_name[0] == '') {
  955. stmt->errornumber = STMT_NO_CURSOR_NAME;
  956. stmt->errormsg = "No Cursor name available";
  957. SC_log_error(func, "", stmt);
  958. return SQL_ERROR;
  959. }
  960. result = SQL_SUCCESS;
  961. len = strlen(stmt->cursor_name);
  962. if (szCursor) {
  963. strncpy_null(szCursor, stmt->cursor_name, cbCursorMax);
  964. if (len >= cbCursorMax)  {
  965. result = SQL_SUCCESS_WITH_INFO;
  966. stmt->errornumber = STMT_TRUNCATED;
  967. stmt->errormsg = "The buffer was too small for the result.";
  968. }
  969. }
  970. if (pcbCursor)
  971. *pcbCursor = len;
  972. return result;
  973. }