From: Peter Rabbitson Date: Thu, 30 Oct 2008 21:26:00 +0000 (+0000) Subject: Final set of DBI docfixes X-Git-Tag: v0.08240~285 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=40911cb3bb714308a90226d789eabdd3e153595d;p=dbsrgits%2FDBIx-Class.git Final set of DBI docfixes --- diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index f36c512..c6ca8f2 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -365,17 +365,18 @@ The argument list may contain: =item * The same 4-element argument set one would normally pass to -L, optionally followed by L recognized by DBIx::Class: +L, optionally followed by +L +recognized by DBIx::Class: $connect_info_args = [ $dsn, $user, $password, \%dbi_attributes?, \%extra_attributes? ]; =item * -A single code reference which returns a connected L optionally followed by L recognized by -DBIx::Class: +A single code reference which returns a connected +L optionally followed by +L recognized +by DBIx::Class: $connect_info_args = [ sub { DBI->connect (...) }, \%extra_attributes? ]; @@ -393,7 +394,7 @@ mixed together: }]; This is particularly useful for L based applications, allowing the -following config (in L style): +following config (L style): schema_class App::DB @@ -410,9 +411,9 @@ following config (in L style): Please note that the L docs recommend that you always explicitly set C to either I<0> or I<1>. L further recommends that it be set to I<1>, and that you perform transactions -via our L method. L will set it to I<1> if you -do not do explicitly set it to zero. This is the default for most -DBDs. See L for details. +via our L method. L will set it +to I<1> if you do not do explicitly set it to zero. This is the default +for most DBDs. See L for details. =head3 DBIx::Class specific connection attributes @@ -481,7 +482,7 @@ SQL Server you should use C<< quote_char => [qw/[ ]/] >>. =item name_sep -This only needs to be used in conjunction with L, and is used to +This only needs to be used in conjunction with C, and is used to specify the charecter that seperates elements (schemas, tables, columns) from each other. In most cases this is simply a C<.>. @@ -1535,7 +1536,7 @@ sub sqlt_type { shift->dbh->{Driver}->{Name} } =head2 bind_attribute_by_data_type Given a datatype from column info, returns a database specific bind -attribute for $dbh->bind_param($val,$attribute) or nothing if we will +attribute for C<< $dbh->bind_param($val,$attribute) >> or nothing if we will let the database planner just handle it. Generally only needed for special case column types, like bytea in postgres. @@ -1898,17 +1899,14 @@ The following methods are extended:- =item limit_dialect See L for details. -For setting, this method is deprecated in favor of L. =item quote_char See L for details. -For setting, this method is deprecated in favor of L. =item name_sep See L for details. -For setting, this method is deprecated in favor of L. =back