/******************************************************************************* ** ** Source File Name = prodin.c 1.3 ** ** Licensed Materials - Property of IBM ** ** (C) COPYRIGHT International Business Machines Corp. 1995, 1999 ** All Rights Reserved. ** ** US Government Users Restricted Rights - Use, duplication or ** disclosure restricted by GSA ADP Schedule Contract with IBM Corp. ** ** ** PURPOSE : ** Uses array input to insert product information in the product table. ** The create sample must be executed first to create the tables. ** ** FUNCTIONS USED : ** SQLAllocEnv ** SQLAllocStmt ** SQLBindParameter ** SQLDisconnect ** SQLExecute ** SQLFreeConnect ** SQLFreeEnv ** SQLFreeStmt ** SQLParamOptions ** SQLPrepare ** ** ** For more information about these samples see the README file. ** ** For more information on programming in CLI see the: ** - "Building CLI Applications" section of the Application Building Guide, and the ** - CLI Guide and Reference. ** ** For more information on the SQL language see the SQL Reference. ** *******************************************************************************/ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <sqlcli1.h> #include "samputil.h" /* Header file for CLI sample code */ /* For the Macintosh environment when generating 68K applications */ #ifdef DB268K /* Need to include ASLM for 68K applications */ #include <LibraryManager.h> #endif /* Global Variables for user id and password. To keep samples simple, not a recommended practice. */ extern SQLCHAR server[SQL_MAX_DSN_LENGTH + 1] ; extern SQLCHAR uid[MAX_UID_LENGTH + 1] ; extern SQLCHAR pwd[MAX_PWD_LENGTH + 1] ; /** main **/ int main( int argc, char * argv[] ) { SQLHANDLE henv, hdbc, hstmt ; SQLRETURN rc ; SQLINTEGER row_array_size = 17 ; SQLINTEGER ind = SQL_NTS ; /*--> SQLL1X36.SCRIPT */ SQLCHAR * stmt = ( SQLCHAR * ) "INSERT INTO PRODUCT VALUES (?, ?, ?, ?, ?)" ; SQLINTEGER Prod_Num[] = { 100110, 100120, 100210, 100220, 100510, 100520, 200110, 200120, 200210, 200220, 200510, 200610, 990110, 990120, 500110, 500210, 300100 }; SQLCHAR Description[][31] = { "Aquarium-Glass-25 litres", "Aquarium-Glass-50 litres", "Aquarium-Acrylic-25 litres", "Aquarium-Acrylic-50 litres", "Aquarium-Stand-Small", "Aquarium-Stand-Large", "Pump-Basic-25 litre", "Pump-Basic-50 litre", "Pump-Deluxe-25 litre", "Pump-Deluxe-50 litre", "Pump-Filter-(for Basic Pump)", "Pump-Filter-(for Deluxe Pump)", "Aquarium-Kit-Small", "Aquarium-Kit-Large", "Gravel-Colored", "Fish-Food-Deluxe-Bulk", "Plastic-Tubing" }; SQLDOUBLE UPrice[] = { 110.00, 190.00, 100.00, 150.00, 60.00, 90.00, 30.00, 45.00, 55.00, 75.00, 4.75, 5.25, 160.00, 240.00, 2.50, 35.00, 5.50 }; SQLCHAR Units[][3] = { " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", "kg", "kg", "m" }; SQLCHAR Combo[][2] = { "N", "N", "N", "N", "N", "N", "N", "N", "N", "N", "N", "N", "Y", "Y", "N", "N", "N" }; /* For the Macintosh environment when generating 68K applications */ #ifdef DB268K /* Before making any API calls for 68K environment, need to initialize the Library Manager */ InitLibraryManager(0,kCurrentZone,kNormalMemory); atexit(CleanupLibraryManager); #endif /*<-- */ /* macro to initalize server, uid and pwd */ INIT_UID_PWD ; /* allocate an environment handle */ rc = SQLAllocHandle( SQL_HANDLE_ENV, SQL_NULL_HANDLE, &henv ) ; if ( rc != SQL_SUCCESS ) return( terminate( henv, rc ) ) ; /* allocate a connect handle, and connect */ rc = DBconnect( henv, &hdbc ) ; if ( rc != SQL_SUCCESS ) return( terminate( henv, rc ) ) ; rc = SQLAllocHandle( SQL_HANDLE_STMT, hdbc, &hstmt ) ; CHECK_HANDLE( SQL_HANDLE_DBC, hdbc, rc ) ; /*--> */ /* Prepare the statement */ rc = SQLPrepare( hstmt, stmt, SQL_NTS ) ; CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; rc = SQLSetStmtAttr( hstmt, SQL_ATTR_PARAMSET_SIZE, ( SQLPOINTER ) row_array_size, 0 ) ; CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; rc = SQLBindParameter(hstmt, 1, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, Prod_Num, 0, NULL); CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; rc = SQLBindParameter(hstmt, 2, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_VARCHAR, 31, 0, Description, 31, NULL); CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; rc = SQLBindParameter(hstmt, 3, SQL_PARAM_INPUT, SQL_C_DOUBLE, SQL_DECIMAL, 10, 2, UPrice, 0, NULL); CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; rc = SQLBindParameter(hstmt, 4, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, 2, 0, Units, 3, NULL); CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; rc = SQLBindParameter(hstmt, 5, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR, 1, 0, Combo, 2, NULL); CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; rc = SQLExecute( hstmt ) ; CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; printf( "Inserted %ld Rows\n", row_array_size ) ; /*<-- */ rc = SQLFreeHandle( SQL_HANDLE_STMT, hstmt ) ; CHECK_HANDLE( SQL_HANDLE_STMT, hstmt, rc ) ; /* COMMIT, free resources and exit */ rc = SQLEndTran( SQL_HANDLE_DBC, hdbc, SQL_COMMIT ) ; CHECK_HANDLE( SQL_HANDLE_DBC, hdbc, rc ) ; printf( "\n>Disconnecting .....\n" ) ; rc = SQLDisconnect( hdbc ) ; CHECK_HANDLE( SQL_HANDLE_DBC, hdbc, rc ) ; rc = SQLFreeHandle( SQL_HANDLE_DBC, hdbc ) ; CHECK_HANDLE( SQL_HANDLE_DBC, hdbc, rc ) ; rc = SQLFreeHandle( SQL_HANDLE_ENV, henv ) ; if ( rc != SQL_SUCCESS ) return( terminate( henv, rc ) ) ; return( SQL_SUCCESS ) ; } /* end main */