123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- /***************************************************************************
- * Licensed Materials - Property of IBM and/or HCL
- *
- * IBM Informix Client-SDK
- *
- * (C) Copyright IBM Corporation 1997, 2004 All rights reserved.
- * (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved.
- *
- *
- *
- *
- *
- * Title: dbdrop.c
- *
- * Description: To drop the sample database (created by dbCreate.c)
- * Before running this program, make sure that all
- * connections to the sample database have been closed.
- * To successfully drop the sample database, you must
- * have DBA permissions or be running this as user
- * 'informix'
- *
- ***************************************************************************
- */
- #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 70
- #define ERRMSG_LEN 200
- SQLCHAR defDsn[] = "odbc_demo";
- SQLINTEGER checkError (SQLRETURN rc,
- SQLSMALLINT handleType,
- SQLHANDLE handle,
- SQLCHAR* errmsg)
- {
- SQLRETURN retcode = SQL_SUCCESS;
- SQLSMALLINT errNum = 1;
- SQLCHAR sqlState[6];
- SQLINTEGER nativeError;
- SQLCHAR errMsg[ERRMSG_LEN];
- SQLSMALLINT textLengthPtr;
-
- if ((rc != SQL_SUCCESS) && (rc != SQL_SUCCESS_WITH_INFO))
- {
- while (retcode != SQL_NO_DATA)
- {
- retcode = SQLGetDiagRec (handleType, handle, errNum, sqlState, &nativeError, errMsg, 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))
- 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;
- /* Miscellaneous variables */
- SQLCHAR dsn[20]; /*name of the DSN used for connecting to the database*/
- SQLRETURN rc = 0;
- SQLINTEGER in;
-
- SQLCHAR connStrIn[BUFFER_LEN];
- SQLCHAR connStrOut[BUFFER_LEN];
- SQLSMALLINT connStrOutLen;
- SQLCHAR* dropDBStmt = (SQLCHAR *) "DROP DATABASE odbc_demodb";
- /* 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
- ** Allocate the statement handle
- */
- /* If(dsn is not explicitly passed in as arg) */
- if (argc != 2)
- {
- /* Use default dsn - odbc_demo */
- fprintf (stdout, "\nUsing default DSN : %s\n", defDsn);
- strcpy ((char *)dsn, (char *)defDsn);
- }
- else
- {
- /* Use specified dsn */
- strcpy ((char *)dsn, (char *)argv[1]);
- fprintf (stdout, "\nUsing specified DSN : %s\n", dsn);
- }
-
- /* 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 */
- sprintf((char *) connStrIn, "DSN=%s;connectdatabase=NO", dsn);
-
- rc = SQLDriverConnect (hdbc, NULL, connStrIn, SQL_NTS, connStrOut, BUFFER_LEN, &connStrOutLen, SQL_DRIVER_NOPROMPT);
- if (checkError (rc, SQL_HANDLE_DBC, hdbc, (SQLCHAR * ) "Error in Step 1 -- SQLDriverConnect failed\nExiting!!"))
- return (1);
- /* Allocate the statement handle */
- 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. Drop the sample database -- odbc_demodb */
- rc = SQLExecDirect (hstmt, dropDBStmt, SQL_NTS);
- if (checkError (rc, SQL_HANDLE_STMT, hstmt, (SQLCHAR * ) "Error in Step 2 -- SQLExecDirect failed\n"))
- goto Exit;
-
-
-
- fprintf(stdout, "STEP 2 done...Sample Database Dropped\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);
- /* Free the statement handle */
- SQLFreeHandle (SQL_HANDLE_STMT, hstmt);
- /* 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);
- }
|