Index: Pg.pm =================================================================== RCS file: /usr/local/cvsroot/dbdpg/dbdpg/Pg.pm,v retrieving revision 1.18 diff -c -r1.18 Pg.pm *** Pg.pm 26 Feb 2003 19:01:36 -0000 1.18 --- Pg.pm 19 Mar 2003 20:19:13 -0000 *************** *** 856,862 **** The options parameter specifies runtime options for the Postgres backend. Common usage is to increase the number of buffers with the C<-B> ! option. Also important is the C<-F> option, which disables automatiic fsync() call after each transaction. For further details please refer to the L. --- 852,858 ---- The options parameter specifies runtime options for the Postgres backend. Common usage is to increase the number of buffers with the C<-B> ! option. Also important is the C<-F> option, which disables automatic fsync() call after each transaction. For further details please refer to the L. *************** *** 877,883 **** @data_sources = DBI->data_sources('Pg'); ! The driver supports this method. Note, that the necessary database connect to the database template1 will be done on the localhost without any user-authentication. Other preferences can only be set with the environment variables PGHOST, DBI_USER and DBI_PASS. --- 873,879 ---- @data_sources = DBI->data_sources('Pg'); ! The driver supports this method. Note that the necessary database connection to the database template1 will be done on the localhost without any user-authentication. Other preferences can only be set with the environment variables PGHOST, DBI_USER and DBI_PASS. *************** *** 1009,1015 **** Used together with the SQL-command 'COPY table FROM STDIN' to copy large amount of data into a table avoiding the overhead of using single ! insert-comands. The application must explicitly send the two characters "\." to indicate to the backend that it has finished sending its data. See test.pl for an example on how to use this function. --- 1005,1011 ---- Used together with the SQL-command 'COPY table FROM STDIN' to copy large amount of data into a table avoiding the overhead of using single ! insert commands. The application must explicitly send the two characters "\." to indicate to the backend that it has finished sending its data. See test.pl for an example on how to use this function. *************** *** 1110,1121 **** --- 1106,1135 ---- Implemented by DBI, no driver-specific impact. + =item B + + $ary_ref = $dbh->selectrow_arrayref($statement, \%attr, @bind_values); + + Implemented by DBI, no driver-specific impact. + + =item B + + $hash_ref = $dbh->selectrow_hashref($statement, \%attr, @bind_values); + + Implemented by DBI, no driver-specific impact. + =item B $ary_ref = $dbh->selectall_arrayref($statement, \%attr, @bind_values); Implemented by DBI, no driver-specific impact. + =item B + + $hash_ref = $dbh->selectall_hashref($statement, $key_field); + + Implemented by DBI, no driver-specific impact. + =item B $ary_ref = $dbh->selectcol_arrayref($statement, \%attr, @bind_values); *************** *** 1177,1183 **** $sth = $dbh->table_info; Supported by the driver as proposed by DBI. This method returns all tables and ! views which are owned by the current user. It does not select any indices and sequences. Also System tables are not selected. As TABLE_QUALIFIER the reltype attribute is returned and the REMARKS are undefined. --- 1191,1197 ---- $sth = $dbh->table_info; Supported by the driver as proposed by DBI. This method returns all tables and ! views which are owned by the current user. It does not select any indexes and sequences. Also System tables are not selected. As TABLE_QUALIFIER the reltype attribute is returned and the REMARKS are undefined. *************** *** 1186,1193 **** @names = $dbh->tables; Supported by the driver as proposed by DBI. This method returns all tables and ! views which are owned by the current user. It does not select any indices and ! sequences. Also system tables are not selected. =item B --- 1200,1207 ---- @names = $dbh->tables; Supported by the driver as proposed by DBI. This method returns all tables and ! views which are owned by the current user. It does not select any indexes and ! sequences, or system tables. =item B