home *** CD-ROM | disk | FTP | other *** search
- /* usersub.c
- *
- * Initialisation for Oraperl.
- */
- /* Copyright 1991 Kevin Stock.
- *
- * You may copy this under the terms of the GNU General Public License,
- * a copy of which should have accompanied your Perl kit.
- */
-
- #include "EXTERN.h"
- #include "perl.h"
- #include "orafns.h"
-
- int
- userinit()
- {
- init_oracle();
-
- #ifdef DEBUGGING
- #ifdef PERL_DEBUGGING
- ora_debug = debug; /* pick up the -D flag */
- #else
- ora_debug = 0;
- #endif /* PERL_DEBUGGING */
- #endif /* DEBUGGING */
-
- ora_errno = 0;
- }
-
-