123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- /***************************************************************************
- * Licensed Materials - Property of IBM and/or HCL
- *
- * IBM Informix Client-SDK
- *
- * Copyright IBM Corporation 1997, 2007 All rights reserved.
- * (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved.
- *
- *
- *
- *
- *
- * Title: posupdtW.c (Unicode counterpart of posupdt.c)
- *
- * Description: To use SQLSetPos for positional updates to a result set
- *
- *
- ***************************************************************************
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #ifndef NO_WIN32
- #include <io.h>
- #include <windows.h>
- #include <conio.h>
- #endif /*NO_WIN32*/
- #include "infxcli.h"
- #define BUFFER_LEN 10
- #define BUFFER_LENW BUFFER_LEN * sizeof(SQLWCHAR)
- #define ERRMSG_LEN 200
- #define NUM_ROWS 5
- SQLWCHAR defDsnW[] = L"odbc_demo";
- SQLCHAR defDsn[] = "odbc_demo";
- SQLINTEGER checkError (SQLRETURN rc,
- SQLSMALLINT handleType,
- SQLHANDLE handle,
- SQLCHAR* errmsg)
- {
- SQLRETURN retcode = SQL_SUCCESS;
- SQLSMALLINT errNum = 1;
- SQLWCHAR sqlStateW[6];
- SQLCHAR *sqlState;
- SQLINTEGER nativeError;
- SQLWCHAR errMsgW[ERRMSG_LEN];
- SQLCHAR *errMsg;
- SQLSMALLINT textLengthPtr;
- if ((rc != SQL_SUCCESS) && (rc != SQL_SUCCESS_WITH_INFO))
- {
- while (retcode != SQL_NO_DATA)
- {
- retcode = SQLGetDiagRecW (handleType, handle, errNum, sqlStateW, &nativeError, errMsgW, ERRMSG_LEN, &textLengthPtr);
- if (retcode == SQL_INVALID_HANDLE)
- {
- fprintf (stderr, "checkError function was called with an invalid handle!!\n");
- return 1;
- }
- if ((retcode == SQL_SUCCESS) || (retcode == SQL_SUCCESS_WITH_INFO))
- {
- sqlState = (SQLCHAR *) malloc (wcslen(sqlStateW) + sizeof(char))
- ;
- wcstombs( (char *) sqlState, sqlStateW, wcslen(sqlStateW)
- + sizeof(char));
- errMsg = (SQLCHAR *) malloc (wcslen(errMsgW) + sizeof(char));
- wcstombs( (char *) errMsg, errMsgW, wcslen(errMsgW)
- + sizeof(char));
- fprintf (stderr, "ERROR: %d: %s : %s \n", nativeError, sqlState , errMsg);
- }
- errNum++;
- }
- fprintf (stderr, "%s\n", errmsg);
- return 1; /* all errors on this handle have been reported */
- }
- else
- return 0; /* no errors to report */
- }
- int main (long argc,
- char* argv[])
- {
- /* Declare variables
- */
- /* Handles */
- SQLHDBC hdbc;
- SQLHENV henv;
- SQLHSTMT hstmt;
- SQLHSTMT hNewStmt;
- /* Miscellaneous variables */
- SQLWCHAR *dsnW; /*name of the DSN used for connecting to the database*/
- SQLRETURN rc = 0;
- SQLINTEGER in;
- SQLWCHAR* selectStmtW = (SQLWCHAR *) L"SELECT cust_num, fname, lname FROM customer";
- SQLWCHAR* newLnameW = (SQLWCHAR *) L"Miller";
- SQLWCHAR fnameW[NUM_ROWS][BUFFER_LEN], lnameW[NUM_ROWS][BUFFER_LEN];
- SQLWCHAR newfnameW[NUM_ROWS][BUFFER_LEN], newlnameW[NUM_ROWS][BUFFER_LEN];
- SQLCHAR *fname, *lname;
- SQLCHAR *newfname, *newlname;
- SQLINTEGER cust_num[NUM_ROWS];
- SQLLEN cbCustNum[NUM_ROWS], cbFname[NUM_ROWS], cbLname[NUM_ROWS];
- SQLINTEGER newcust_num[NUM_ROWS];
- SQLLEN newcbCustNum[NUM_ROWS], newcbFname[NUM_ROWS], newcbLname[NUM_ROWS];
-
- SQLUSMALLINT i, statusArray[NUM_ROWS];
- int lenArgv1;
-
- /* STEP 1. Get data source name from command line (or use default)
- ** Allocate the environment handle and set ODBC version
- ** Allocate the connection handle
- ** Establish the database connection
- ** Set the connection attribute to enable scrollable cursors
- ** Allocate the statement handles
- */
- /* If(dsn is not explicitly passed in as arg) */
- if (argc != 2)
- {
- /* Use default dsnW - odbc_demo */
- fprintf (stdout, "\nUsing default DSN : %s\n", defDsn);
- dsnW = (SQLWCHAR *) malloc( wcslen(defDsnW) * sizeof(SQLWCHAR)
- + sizeof(SQLWCHAR) );
- wcscpy ((SQLWCHAR *)dsnW, (SQLWCHAR *)defDsnW);
- }
- else
- {
- /* Use specified dsnW */
- lenArgv1 = strlen((char *)argv[1]);
- dsnW = (SQLWCHAR *) malloc (lenArgv1 * sizeof(SQLWCHAR)
- + sizeof(SQLWCHAR));
- mbstowcs (dsnW, (char *)argv[1], lenArgv1 + sizeof(char));
- fprintf (stdout, "\nUsing specified DSN : %s\n", argv[1]);
- }
-
- /* Allocate the Environment handle */
- rc = SQLAllocHandle (SQL_HANDLE_ENV, SQL_NULL_HANDLE, &henv);
- if (rc != SQL_SUCCESS)
- {
- fprintf (stdout, "Environment Handle Allocation failed\nExiting!!");
- return (1);
- }
- /* Set the ODBC version to 3.0 */
- rc = SQLSetEnvAttr (henv, SQL_ATTR_ODBC_VERSION, (SQLPOINTER) SQL_OV_ODBC3, 0);
- if (checkError (rc, SQL_HANDLE_ENV, henv, (SQLCHAR *) "Error in Step 1 -- SQLSetEnvAttr failed\nExiting!!"))
- return (1);
- /* Allocate the connection handle */
- rc = SQLAllocHandle (SQL_HANDLE_DBC, henv, &hdbc);
- if (checkError (rc, SQL_HANDLE_ENV, henv, (SQLCHAR *) "Error in Step 1 -- Connection Handle Allocation failed\nExiting!!"))
- return (1);
- /* Establish the database connection */
- rc = SQLConnectW (hdbc, dsnW, SQL_NTS, (SQLWCHAR *) L"", SQL_NTS, (SQLWCHAR *) L"", SQL_NTS);
- if (checkError (rc, SQL_HANDLE_DBC, hdbc, (SQLCHAR *) "Error in Step 1 -- SQLConnect failed\nExiting!!"))
- return (1);
- /* Set the connection attribute to enable scrollable cursors */
- rc = SQLSetConnectAttr (hdbc, SQL_INFX_ATTR_ENABLE_SCROLL_CURSORS, (SQLPOINTER) SQL_TRUE, (SQLINTEGER) NULL);
- if (checkError (rc, SQL_HANDLE_DBC, hdbc, (SQLCHAR *) "Error in Step 1 -- Set Connection Attribute failed\nExiting!!"))
- return (1);
- /* Allocate the statement handles */
- rc = SQLAllocHandle (SQL_HANDLE_STMT, hdbc, &hstmt );
- if (checkError (rc, SQL_HANDLE_DBC, hdbc, (SQLCHAR *) "Error in Step 1 -- Statement Handle Allocation failed\nExiting!!"))
- return (1);
-
-
- fprintf (stdout, "STEP 1 done...connected to database\n");
- /* STEP 2 Set the following statement attributes
- ** -- SQL_ATTR_ROW_ARRAY_SIZE to the number of rows to be bound
- ** SQL_ATTR_CONCURRENCY to SQL_CONCUR_LOCK
- ** SQL_ATTR_CURSOR_TYPE to SQL_CURSOR_STATIC
- ** SQL_ATTR_ROW_STATUS_PTR tot he address of the status array
- */
- /* Set the statement attribute SQL_ATTR_ROW_ARRAY_SIZE to the number of rows to be bound */
- rc = SQLSetStmtAttr (hstmt, SQL_ATTR_ROW_ARRAY_SIZE, (SQLPOINTER) NUM_ROWS, 0);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 2 -- SQLSetStmtAttr failed for SQL_ATTR_ROW_ARRAY_SIZE\n"))
- goto Exit;
- /* Set the statement attribute SQL_ATTR_CONCURRENCY to SQL_CONCUR_LOCK */
- rc = SQLSetStmtAttr (hstmt, SQL_ATTR_CONCURRENCY, (SQLPOINTER) SQL_CONCUR_LOCK, 0);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 2 -- SQLSetStmtAttr failed for SQL_ATTR_CONCURRENCY\n"))
- goto Exit;
- /* Set the statement attribute SQL_ATTR_CURSOR_TYPE to SQL_CURSOR_STATIC */
- rc = SQLSetStmtAttr (hstmt, SQL_ATTR_CURSOR_TYPE, (SQLPOINTER) SQL_CURSOR_STATIC, 0);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 2 -- SQLSetStmtAttr failed for SQL_ATTR_CURSOR_TYPE\n"))
- goto Exit;
- /* Set the statement attribute SQL_ATTR_ROW_STATUS_PTR to the status array */
- rc = SQLSetStmtAttr (hstmt, SQL_ATTR_ROW_STATUS_PTR, statusArray, 0);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 2 -- SQLSetStmtAttr failed for SQL_ATTR_ROW_STATUS_PTR\n"))
- goto Exit;
-
- fprintf (stdout, "STEP 2 done...Statement attributes set\n");
-
- /* STEP 3. Retrieve data from the 'customer' table
- ** Display the results
- */
- /* Retrieve data from the 'customer' table */
- fprintf (stdout, "Retrieving data from 'customer' table\n\n");
- rc = SQLExecDirectW (hstmt, selectStmtW, SQL_NTS);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 3 -- SQLExecDirect failed\n"))
- goto Exit;
- /* Bind the result set columns */
- rc = SQLBindCol (hstmt, 1, SQL_C_LONG, &cust_num[0], 0, &cbCustNum[0]);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 3 -- SQLBindCol failed (column 1)\n"))
- goto Exit;
- rc = SQLBindCol (hstmt, 2, SQL_C_WCHAR, fnameW[0],BUFFER_LENW, &cbFname[0]);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 3 -- SQLBindCol failed (column 2)\n"))
- goto Exit;
- rc = SQLBindCol (hstmt, 3, SQL_C_WCHAR, lnameW[0], BUFFER_LENW, &cbLname[0]);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 3 -- SQLBindCol failed (column 3)\n"))
- goto Exit;
- /* Fetch the results */
- rc = SQLFetch (hstmt);
- if (rc == SQL_NO_DATA_FOUND)
- fprintf (stdout, "NO DATA FOUND!!\n EXITING!!");
- else if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 3 -- SQLFetch failed\n"))
- goto Exit;
- for (i=0; i<NUM_ROWS; i++)
- {
- /* Display the results */
- fname = (SQLCHAR *) malloc (wcslen(fnameW[i]) + sizeof(char));
- wcstombs( (char *) fname, fnameW[i],
- wcslen(fnameW[i]) + sizeof(char));
- lname = (SQLCHAR *) malloc (wcslen(lnameW[i]) + sizeof(char));
- wcstombs( (char *) lname, lnameW[i],
- wcslen(lnameW[i]) + sizeof(char));
- fprintf (stdout, "Cust Num: %d, Fname: %s, Lname: %s\n", cust_num[i], fname, lname);
- }
- fprintf (stdout, "\nSTEP 3 done...original data retrieved from 'customer' table\n");
- /* STEP 4. Update the 'lname' field of the 'customer' table for cust_num = 102
- ** Call SQLSetPos to update the data in the table
- ** Call SQLEndTran to commit the transaction
- */
- /* Update the value in the 'lname' array where cust_num = 102 to 'Miller' */
- for (i=0; i< NUM_ROWS; i++)
- {
- if (cust_num[i] == 102)
- {
- wcscpy ((SQLWCHAR*) lnameW[i], (SQLWCHAR*) newLnameW);
- cbLname[i] = wcslen(newLnameW) * sizeof(SQLWCHAR);
- /* Call SQLSetPos to update the data */
- rc = SQLSetPos (hstmt, (SQLUSMALLINT) (i+1), (SQLUSMALLINT) SQL_UPDATE, (SQLUSMALLINT) SQL_LOCK_NO_CHANGE);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 4 -- SQLSetPos\n"))
- goto Exit;
- break;
- }
- }
- /* Commit the transaction */
- rc = SQLEndTran (SQL_HANDLE_DBC, hdbc, SQL_COMMIT);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR *) "Error in Step 4 -- SQLEndtran\n"))
- goto Exit;
- fprintf (stdout, "STEP 4 done...row updated using SQLSetPos\n");
- /* STEP 5. Retrieve updated data from the 'customer' table
- ** Display the results
- */
- /* Retrieve updated data from the 'customer' table */
- fprintf (stdout, "Retrieving data from 'customer' table\n\n");
- rc = SQLAllocHandle (SQL_HANDLE_STMT, hdbc, &hNewStmt );
- if (checkError (rc, SQL_HANDLE_DBC, hdbc, (SQLCHAR *) "Error in Step 1 -- Statement Handle Allocation failed\nExiting!!"))
- return (1);
-
- /* Set the statement attribute SQL_ATTR_ROW_ARRAY_SIZE to the number of rows to be bound */
- rc = SQLSetStmtAttr (hNewStmt, SQL_ATTR_ROW_ARRAY_SIZE, (SQLPOINTER) NUM_ROWS, 0);
- if (checkError (rc, SQL_HANDLE_STMT, hNewStmt, (SQLCHAR *) "Error in Step 2 -- SQLSetStmtAttr failed for SQL_ATTR_ROW_ARRAY_SIZE\n"))
- goto Exit;
- rc = SQLExecDirectW (hNewStmt, selectStmtW, SQL_NTS);
- if (checkError (rc, SQL_HANDLE_STMT, hNewStmt, (SQLCHAR *) "Error in Step 5 -- SQLExecDirect failed\n"))
- goto Exit;
- /* Bind the result set columns */
- rc = SQLBindCol (hNewStmt, 1, SQL_C_LONG, &newcust_num[0], 0, &newcbCustNum[0]);
- if (checkError (rc, SQL_HANDLE_STMT, hNewStmt, (SQLCHAR *) "Error in Step 5 -- SQLBindCol failed (column 1)\n"))
- goto Exit;
- rc = SQLBindCol (hNewStmt, 2, SQL_C_WCHAR, newfnameW[0], BUFFER_LENW, &newcbFname[0]);
- if (checkError (rc, SQL_HANDLE_STMT, hNewStmt, (SQLCHAR *) "Error in Step 5 -- SQLBindCol failed (column 2)\n"))
- goto Exit;
- rc = SQLBindCol (hNewStmt, 3, SQL_C_WCHAR, newlnameW[0], BUFFER_LENW, &newcbLname[0]);
- if (checkError (rc, SQL_HANDLE_STMT, hNewStmt, (SQLCHAR *) "Error in Step 5 -- SQLBindCol failed (column 3)\n"))
- goto Exit;
- /* Fetch the results */
- rc = SQLFetch (hNewStmt);
- if (rc == SQL_NO_DATA_FOUND)
- fprintf (stdout, "NO DATA FOUND!!\n EXITING!!");
- else if (checkError (rc, SQL_HANDLE_STMT, hNewStmt, (SQLCHAR *) "Error in Step 5 -- SQLFetch failed\n"))
- goto Exit;
- for (i=0; i<NUM_ROWS; i++)
- {
- /* Display the results */
- newfname = (SQLCHAR *) malloc (wcslen(newfnameW[i]) + sizeof(char));
- wcstombs( (char *) newfname, newfnameW[i],
- wcslen(newfnameW[i]) + sizeof(char));
- newlname = (SQLCHAR *) malloc (wcslen(newlnameW[i]) + sizeof(char));
- wcstombs( (char *) newlname, newlnameW[i],
- wcslen(newlnameW[i]) + sizeof(char));
- fprintf (stdout, "Cust Num: %d, Fname: %s, Lname: %s\n", newcust_num[i], newfname, newlname);
- }
- fprintf (stdout, "\nSTEP 5 done...updated data retrieved from 'customer' table\n");
- Exit:
- /* CLEANUP: Close the statement handle
- ** Free the statement handle
- ** Disconnect from the datasource
- ** Free the connection and environment handles
- ** Exit
- */
- /* Close the statement handle */
- SQLFreeStmt (hstmt, SQL_CLOSE);
- SQLFreeStmt (hNewStmt, SQL_CLOSE);
- /* Free the statement handle */
- SQLFreeHandle (SQL_HANDLE_STMT, hstmt);
- SQLFreeHandle (SQL_HANDLE_STMT, hNewStmt);
- /* Disconnect from the data source */
- SQLDisconnect (hdbc);
- /* Free the environment handle and the database connection handle */
- SQLFreeHandle (SQL_HANDLE_DBC, hdbc);
- SQLFreeHandle (SQL_HANDLE_ENV, henv);
- fprintf (stdout,"\n\nHit <Enter> to terminate the program...\n\n");
- in = getchar ();
- return (rc);
- }
|