Skip to content

Commit

Permalink
Commented out unused code
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.perl.org/modules/dbd-oracle/trunk@14959 50811bd7-b8ce-0310-adc1-d9db26280581
  • Loading branch information
mjevans committed Oct 22, 2011
1 parent c547837 commit 25ca4de
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Changes in DBD-Oracle 1.33_01 (xx-xx-xxxx)
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]
Expand Down
4 changes: 2 additions & 2 deletions dbdimp.h
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ char *oci_exe_mode _((ub4 mode));
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));

Expand Down
9 changes: 7 additions & 2 deletions oci8.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ int describe_obj_by_tdo(SV *sth,imp_sth_t *imp_sth,fbh_obj_t *obj,ub2 level );
int dump_struct(imp_sth_t *imp_sth,fbh_obj_t *obj,int level);



/*
char *
dbd_yes_no(int yes_no)
{
Expand All @@ -33,6 +33,7 @@ dbd_yes_no(int yes_no)
}
return "No";
}
*/

void
dbd_init_oci(dbistate_t *dbistate)
Expand All @@ -52,6 +53,7 @@ dbd_init_oci_drh(imp_drh_t * imp_drh)

}

/*
char *
oci_sql_function_code_name(int sqlfncode)
{
Expand All @@ -71,7 +73,9 @@ oci_sql_function_code_name(int sqlfncode)
sprintf(SvPVX(sv),"(UNKNOWN SQL FN Code %d)", sqlfncode);
return SvPVX(sv);
}
*/

/*
char *
oci_ptype_name(int ptype)
{
Expand Down Expand Up @@ -104,7 +108,8 @@ oci_ptype_name(int ptype)
sprintf(SvPVX(sv),"(UNKNOWN PTYPE Code %d)", ptype);
return SvPVX(sv);
}

*/

char *
oci_exe_mode(ub4 mode)
{
Expand Down

0 comments on commit 25ca4de

Please sign in to comment.