[svn:dbd-oracle] r14959 - dbd-oracle/trunk
[email protected] Sat, 22 Oct 2011 04:51:20 -0700 (PDT)
| Newsgroups | perl.dbd.oracle.changes |
|---|---|
| Message-ID | <[email protected]> |
Author: mjevans
Date: Sat Oct 22 04:51:19 2011
New Revision: 14959
Modified:
dbd-oracle/trunk/Changes
dbd-oracle/trunk/dbdimp.h
dbd-oracle/trunk/oci8.c
Log:
Commented out unused code
Modified: dbd-oracle/trunk/Changes
==============================================================================
--- dbd-oracle/trunk/Changes (original)
+++ dbd-oracle/trunk/Changes Sat Oct 22 04:51:19 2011
@@ -16,6 +16,10 @@
does not affect how the column is bound in Oracle, only what
happens after the column data is retrieved (Martin J. Evans)
+ [OTHER]
+ - Commented out some functions in oci8.c which were not used to
+ reduce the size of the driver a little (Martin J. Evans)
+
Changes in DBD-Oracle 1.33_00 (18-10-2011)
[BUG FIXES]
Modified: dbd-oracle/trunk/dbdimp.h
==============================================================================
--- dbd-oracle/trunk/dbdimp.h (original)
+++ dbd-oracle/trunk/dbdimp.h Sat Oct 22 04:51:19 2011
@@ -352,8 +352,8 @@
char *dbd_yes_no _((int yes_no));
char *oci_col_return_codes _((int rc));
char *oci_csform_name _((ub4 attr));
-char *oci_sql_function_code_name _((int sqlfncode));
-char *oci_ptype_name _((int ptype));
+/*char *oci_sql_function_code_name _((int sqlfncode));
+ char *oci_ptype_name _((int ptype));*/
int dbd_rebind_ph_lob _((SV *sth, imp_sth_t *imp_sth, phs_t *phs));
Modified: dbd-oracle/trunk/oci8.c
==============================================================================
--- dbd-oracle/trunk/oci8.c (original)
+++ dbd-oracle/trunk/oci8.c Sat Oct 22 04:51:19 2011
@@ -23,7 +23,7 @@
int dump_struct(imp_sth_t *imp_sth,fbh_obj_t *obj,int level);
-
+/*
char *
dbd_yes_no(int yes_no)
{
@@ -33,6 +33,7 @@
}
return "No";
}
+*/
void
dbd_init_oci(dbistate_t *dbistate)
@@ -52,6 +53,7 @@
}
+/*
char *
oci_sql_function_code_name(int sqlfncode)
{
@@ -71,7 +73,9 @@
sprintf(SvPVX(sv),"(UNKNOWN SQL FN Code %d)", sqlfncode);
return SvPVX(sv);
}
+*/
+ /*
char *
oci_ptype_name(int ptype)
{
@@ -104,7 +108,8 @@
sprintf(SvPVX(sv),"(UNKNOWN PTYPE Code %d)", ptype);
return SvPVX(sv);
}
-
+ */
+
char *
oci_exe_mode(ub4 mode)
{