Author: REHSACK
Date: Thu Dec 20 02:24:59 2012
New Revision: 15529

Modified:
   dbi/branches/sqlengine/lib/DBD/File/Developers.pod

Log:
clarify methods belongs to ...

Modified: dbi/branches/sqlengine/lib/DBD/File/Developers.pod
==============================================================================
--- dbi/branches/sqlengine/lib/DBD/File/Developers.pod  (original)
+++ dbi/branches/sqlengine/lib/DBD/File/Developers.pod  Thu Dec 20 02:24:59 2012
@@ -414,6 +414,8 @@
 C<f_fqln>. The table name is set according to C<$respect_case> and
 C<< $meta->{sql_identifier_case} >> (SQL_IC_LOWER, SQL_IC_UPPER).
 
+  package DBD::File::DataSource::Stream;
+
   sub apply_encoding {
     my ($self, $meta, $fn) = @_;
     ...
@@ -422,6 +424,8 @@
 Applies the encoding from I<meta information> (C<< $meta->{f_encoding} >>)
 to the file handled opened in C<open_data>.
 
+  package DBD::File::DataSource::Stream;
+
   sub open_data {
     my ($self, $meta, $attrs, $flags) = @_;
     ...
@@ -429,6 +433,8 @@
 
 Opens (C<dup(2)>) the file handle provided in C<< $meta->{f_file} >>.
 
+  package DBD::File::DataSource::Stream;
+
   sub can_flock { ... }
 
 Returns whether C<flock(2)> is available or not (avoids retesting in

Reply via email to