1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*
* @(#)$Id: esqlbasic.ec,v 100.1 2002/02/08 22:49:13 jleffler Exp $
*
* DBD::Informix for Perl Version 5 -- Test Informix-ESQL/C environment
*
* This is a stripped down version of the esqltest.ec program, but it is
* a pure ESQL/C program which is completely self-contained (it does not
* require any source or headers other than those which come with ESQL/C).
* Used when people really run into problems. Compile using the following
* command line (ensuring that there is no esql script modified by
* DBD::Informix in the way of the official esql script):
*
* esql -o esqlbasic esqlbasic.ec
*
* Copyright 1997-99 Jonathan Leffler
* Copyright 2002 IBM
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the Perl README file.
*/
/*TABSTOP=4*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* SunOS 4.1.3 <stdlib.h> does not provide EXIT_SUCCESS/EXIT_FAILURE */
#ifndef EXIT_FAILURE
#define EXIT_FAILURE 1
#endif
#ifndef EXIT_SUCCESS
#define EXIT_SUCCESS 0
#endif
static int estat = EXIT_SUCCESS;
#ifndef lint
static const char rcs[] = "@(#)$Id: esqlbasic.ec,v 100.1 2002/02/08 22:49:13 jleffler Exp $";
#endif
/*
** Various people ran into problems testing DBD::Informix because the
** basic Informix environment was not set up correctly.
** This code was written as a self-defense measure to try and ensure
** that DBD::Informix had some chance of being tested successfully
** before the tests are run.
*/
/* Format and print an Informix error message (both SQL and ISAM parts) */
void ix_printerr(FILE *fp, long rc)
{
char errbuf[256];
char fmtbuf[256];
char sql_buf[256];
char isambuf[256];
char msgbuf[sizeof(sql_buf)+sizeof(isambuf)];
if (rc != 0)
{
/* Format SQL (primary) error */
if (rgetmsg(rc, errbuf, sizeof(errbuf)) != 0)
strcpy(errbuf, "<<Failed to locate SQL error message>>");
sprintf(fmtbuf, errbuf, sqlca.sqlerrm);
sprintf(sql_buf, "SQL: %ld: %s", rc, fmtbuf);
/* Format ISAM (secondary) error */
if (sqlca.sqlerrd[1] != 0)
{
if (rgetmsg(sqlca.sqlerrd[1], errbuf, sizeof(errbuf)) != 0)
strcpy(errbuf, "<<Failed to locate ISAM error message>>");
sprintf(fmtbuf, errbuf, sqlca.sqlerrm);
sprintf(isambuf, "ISAM: %ld: %s", sqlca.sqlerrd[1], fmtbuf);
}
else
isambuf[0] = '\0';
/* Concatenate SQL and ISAM messages */
/* Note that the messages have trailing newlines */
strcpy(msgbuf, sql_buf);
strcat(msgbuf, isambuf);
/* Record error number and error message */
fprintf(fp, "%s\n", msgbuf);
/* Set exit status */
estat = EXIT_FAILURE;
}
}
static void test_permissions(char *dbname)
{
EXEC SQL CREATE TABLE dbd_ix_esqltest (Col01 INTEGER NOT NULL);
if (sqlca.sqlcode < 0)
{
fprintf(stderr, "You cannot use %s as a test database.\n", dbname);
fprintf(stderr, "You do not have sufficient privileges.\n");
ix_printerr(stderr, sqlca.sqlcode);
estat = EXIT_FAILURE;
}
else
{
EXEC SQL DROP TABLE dbd_ix_esqltest;
if (sqlca.sqlcode < 0)
{
fprintf(stderr, "Failed to drop table dbd_ix_esqltest in database %s\n", dbname);
fprintf(stderr, "Please remove it manually.\n");
ix_printerr(stderr, sqlca.sqlcode);
}
}
/*
** Ignore any errors on rollback.
** The ROLLBACK (or a COMMIT) is necessary if $DBD_INFORMIX_DATABASE is
** a MODE ANSI database and DBD_INFORMIX_DATABASE2 is either unset or
** set to the same database.
** Problem found by Kent S. Gordon (kgor@inetspace.com).
*/
EXEC SQL ROLLBACK WORK;
}
int main(int argc, char **argv)
{
/* Command-line arguments are ignored at the moment */
char *dbidsn = getenv("DBI_DSN");
char *dbase0 = getenv("DBI_DBNAME");
$char *dbase1 = getenv("DBD_INFORMIX_DATABASE");
/* Check whether the default connection variable is set */
if (dbidsn != 0 && *dbidsn != '\0')
{
printf("\tFYI: $DBI_DSN is set to '%s'.\n", dbidsn);
printf("\t\tIt is not used by any of the DBD::Informix tests.\n");
printf("\t\tIt is unset by the tests which would otherwise break.\n");
}
/* Set the basic default database name */
if (dbase0 == 0 || *dbase0 == '\0')
{
dbase0 = "stores";
printf("\t$DBI_DBNAME unset - defaulting to '%s'.\n", dbase0);
}
else
{
printf("\t$DBI_DBNAME set to '%s'.\n", dbase0);
}
/* Test for the explicit DBD::Informix database */
if (dbase1 == 0 || *dbase1 == '\0')
{
dbase1 = dbase0;
printf("\t$DBD_INFORMIX_DATABASE unset - defaulting to '%s'.\n", dbase1);
}
else
printf("\t$DBD_INFORMIX_DATABASE set to '%s'.\n", dbase1);
printf("Testing connection to %s\n", dbase1);
EXEC SQL DATABASE :dbase1;
if (sqlca.sqlcode != 0)
{
ix_printerr(stderr, sqlca.sqlcode);
}
test_permissions(dbase1);
if (estat == EXIT_SUCCESS)
printf("Your Informix environment is (probably) OK\n\n");
else
{
printf("\n*** Your Informix environment is not usable");
printf("\n*** You must fix it before building or testing DBD::Informix\n\n");
}
return(estat);
}
|