X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema.pm;h=2a1c883572e4f23feb390c8230eab343243131f6;hb=27252a4a98791c2fcf13693cfbb9f8c44f5e585b;hp=d72e3d4389990647e29e7d268363d54eb9e0cba4;hpb=829517d4c466a52cac6123bb6e56af32c76f9646;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Schema.pm b/lib/DBIx/Class/Schema.pm index d72e3d4..2a1c883 100644 --- a/lib/DBIx/Class/Schema.pm +++ b/lib/DBIx/Class/Schema.pm @@ -456,9 +456,13 @@ is used to create a new instance of the storage backend and set it on the Schema object. See L for DBI-specific -syntax on the C>@connectinfo> argument, or L in +syntax on the C<@connectinfo> argument, or L in general. +Note that C expects an arrayref of arguments, but +C does not. C wraps it's arguments in an arrayref +before passing them to C. + =cut sub connect { shift->clone->connection(@_) }