/**************************************************************************** ** (c) Copyright IBM Corp. 2007 All rights reserved. ** ** The following sample of source code ("Sample") is owned by International ** Business Machines Corporation or one of its subsidiaries ("IBM") and is ** copyrighted and licensed, not sold. You may use, copy, modify, and ** distribute the Sample in any form without payment to IBM, for the purpose of ** assisting you in the development of your applications. ** ** The Sample code is provided to you on an "AS IS" basis, without warranty of ** any kind. IBM HEREBY EXPRESSLY DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR ** IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Some jurisdictions do ** not allow for the exclusion or limitation of implied warranties, so the above ** limitations or exclusions may not apply to you. IBM shall not be liable for ** any damages you suffer as a result of using, copying, modifying or ** distributing the Sample, even if IBM has been advised of the possibility of ** such damages. ***************************************************************************** ** ** SOURCE FILE NAME: dbcreate.C ** ** SAMPLE: Create and drop databases ** ** DB2 APIs USED: ** sqlecrea -- CREATE DATABASE ** sqledrpd -- DROP DATABASE ** � ** STRUCTURES USED: ** sqlca ** SQLEDBTERRITORYINFO ** sqledbdesc ** ** ***************************************************************************** ** ** For more information on the sample programs, see the README file. ** ** For information on developing embedded SQL applications see the Developing Embedded SQL Applications book. ** ** For information on DB2 APIs, see the Administrative API Reference. ** ** For the latest information on programming, compiling, and running DB2 ** applications, visit the DB2 Information Center at ** http://publib.boulder.ibm.com/infocenter/db2luw/v9r7/index.jsp ****************************************************************************/ #include <string.h> #include <sqle819a.h> #include <sqlutil.h> #include <sqlenv.h> #include "utilapi.h" #if ((__cplusplus >= 199711L) && !defined DB2HP && !defined DB2AIX) || \ (DB2LINUX && (__LP64__ || (__GNUC__ >= 3)) ) #include <iostream> using namespace std; #else #include <iostream.h> #endif class DbCreate { public: static int Create(); static int Drop(); }; int DbCreate::Create() { struct sqlca sqlca; char dbName[SQL_DBNAME_SZ + 1]; char dbLocalAlias[SQL_ALIAS_SZ + 1]; char dbPath[SQL_PATH_SZ + 1]; struct sqledbdesc dbDescriptor; SQLEDBTERRITORYINFO territoryInfo; cout << "\n-----------------------------------------------------------"; cout << "\nUSE THE DB2 API:" << endl; cout << " sqlecrea -- CREATE DATABASE" << endl; cout << "TO CREATE A NEW DATABASE:" << endl; // set new database parameters strcpy(dbName, "dbcreate"); strcpy(dbLocalAlias, "dbcreate"); strcpy(dbPath, ""); strcpy(dbDescriptor.sqldbdid, SQLE_DBDESC_2); dbDescriptor.sqldbccp = 0; dbDescriptor.sqldbcss = SQL_CS_USER; memcpy(dbDescriptor.sqldbudc, sqle_819_500, SQL_CS_SZ); strcpy(dbDescriptor.sqldbcmt, "comment for database"); dbDescriptor.sqldbsgp = 0; dbDescriptor.sqldbnsg = 10; dbDescriptor.sqltsext = -1; dbDescriptor.sqlcatts = NULL; dbDescriptor.sqlusrts = NULL; dbDescriptor.sqltmpts = NULL; strcpy(territoryInfo.sqldbcodeset, "ISO8859-1"); strcpy(territoryInfo.sqldblocale, "C"); cout << "\n Create a [remote] database and catalog it locally:" << endl; cout << " database name : " << dbName << endl; cout << " local database alias: " << dbLocalAlias << endl; // create a new database sqlecrea(dbName, dbLocalAlias, dbPath, &dbDescriptor, &territoryInfo, '\0', NULL, &sqlca); DB2_API_CHECK("Database -- Create"); return 0; } //DbCreate::Create int DbCreate::Drop() { struct sqlca sqlca; char dbLocalAlias[SQL_ALIAS_SZ + 1]; cout << "\n-----------------------------------------------------------"; cout << "\nUSE THE DB2 API:" << endl; cout << " sqledrpd -- DROP DATABASE" << endl; cout << "TO DROP A DATABASE:" << endl; strcpy(dbLocalAlias, "dbcreate"); cout << "\n Drop a [remote] database and uncatalog it locally."; cout << "\n local database alias: " << dbLocalAlias << endl; // drop a database sqledrpd(dbLocalAlias, &sqlca); DB2_API_CHECK("Database -- Drop"); return 0; } //DbCreate::Drop int main(int argc, char *argv[]) { int rc = 0; CmdLineArgs check; DbCreate create; Instance inst; // check the command line arguments rc = check.CmdLineArgsCheck2(argc, argv, inst); if (rc != 0) { return rc; } cout << "\nTHIS SAMPLE SHOWS HOW TO CREATE/DROP A DATABASE." << endl; // attach to a local or remote instance rc = inst.Attach(); if (rc != 0) { return rc; } rc = create.Create(); rc = create.Drop(); // detach from a local or remote instance rc = inst.Detach(); if (rc != 0) { return rc; } return 0; } //main