Author: timbo
Date: Sat Mar 24 15:13:12 2007
New Revision: 9322

Modified:
   dbi/trunk/DBI.xs
   dbi/trunk/MANIFEST

Log:
Polish up for release


Modified: dbi/trunk/DBI.xs
==============================================================================
--- dbi/trunk/DBI.xs    (original)
+++ dbi/trunk/DBI.xs    Sat Mar 24 15:13:12 2007
@@ -1398,7 +1398,7 @@
      */
     dTHX;
     dPERINTERP;
-    int i = DBIc_NUM_FIELDS(imp_sth);
+    I32 i = DBIc_NUM_FIELDS(imp_sth);
     AV *av = DBIc_FIELDS_AV(imp_sth);
 
     if (i < 0)
@@ -1409,12 +1409,12 @@
             return av;
         /* we need to adjust the size of the array */
         if (DBIc_TRACE_LEVEL(imp_sth) >= 3)
-            PerlIO_printf(DBILOGFP,"    dbih_setup_fbav realloc from %d to %d 
fields\n", av_len(av)+1, i);
+            PerlIO_printf(DBILOGFP,"    dbih_setup_fbav realloc from %ld to 
%ld fields\n", av_len(av)+1, i);
         SvREADONLY_off(av);
     }
     else {
         if (DBIc_TRACE_LEVEL(imp_sth) >= 3)
-            PerlIO_printf(DBILOGFP,"    dbih_setup_fbav alloc for %d 
fields\n", i);
+            PerlIO_printf(DBILOGFP,"    dbih_setup_fbav alloc for %ld 
fields\n", i);
         av = newAV();
         DBIc_FIELDS_AV(imp_sth) = av;
     }
@@ -1424,7 +1424,7 @@
     while(i--)                 /* field 1 stored at index 0    */
        av_store(av, i, newSV(0));
     if (DBIc_TRACE_LEVEL(imp_sth) >= 3)
-        PerlIO_printf(DBILOGFP,"    dbih_setup_fbav now %d fields\n", 
av_len(av)+1);
+        PerlIO_printf(DBILOGFP,"    dbih_setup_fbav now %ld fields\n", 
av_len(av)+1);
     SvREADONLY_on(av);         /* protect against shift @$row etc */
     /* row_count will need to be manually reset by the driver if the   */
     /* sth is re-executed (since this code won't get rerun)            */

Modified: dbi/trunk/MANIFEST
==============================================================================
--- dbi/trunk/MANIFEST  (original)
+++ dbi/trunk/MANIFEST  Sat Mar 24 15:13:12 2007
@@ -30,7 +30,6 @@
 lib/DBD/Gofer/Policy/classic.pm     Reasonable policy for typical usage
 lib/DBD/Gofer/Policy/rush.pm        Raw speed, fewest round trips, least 
transparent
 lib/DBD/Gofer/Transport/Base.pm Base class for DBD::Gofer driver transport 
classes
-lib/DBD/Gofer/Transport/http.pm
 lib/DBD/Gofer/Transport/null.pm DBD::Gofer transport that executes in same 
process (for testing)
 lib/DBD/Gofer/Transport/pipeone.pm DBD::Gofer transport to new subprocess for 
each request
 lib/DBD/Gofer/Transport/stream.pm DBD::Gofer transport for ssh etc
@@ -48,7 +47,6 @@
 lib/DBI/Gofer/Request.pm        Request object from DBD::Gofer
 lib/DBI/Gofer/Response.pm       Response object for DBD::Gofer
 lib/DBI/Gofer/Transport/Base.pm Base class for DBD::Gofer server transport 
classes
-lib/DBI/Gofer/Transport/mod_perl.pm
 lib/DBI/Gofer/Transport/pipeone.pm  DBD::Gofer transport for single requests
 lib/DBI/Gofer/Transport/stream.pm   DBI::Gofer transport for ssh etc
 lib/DBI/Profile.pm             Manage DBI usage profile data

Reply via email to