X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FFAQ.pod;h=48b3d56cd615061078871805f84c562ce844d8be;hb=5529838f7afff91467ef2664087999ab222da48d;hp=bef779e57f11319a0d96c43488e1534861495382;hpb=d095c62d491afe010e870f31b4e0d1419273cba9;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Manual/FAQ.pod b/lib/DBIx/Class/Manual/FAQ.pod index bef779e..48b3d56 100644 --- a/lib/DBIx/Class/Manual/FAQ.pod +++ b/lib/DBIx/Class/Manual/FAQ.pod @@ -78,7 +78,7 @@ lot later. If your database server allows you to run queries across multiple databases at once, then so can DBIx::Class. All you need to do is make sure you write the database name as part of the -L call. Eg: +L call. Eg: __PACKAGE__->table('mydb.mytablename'); @@ -87,10 +87,10 @@ L call. =item .. use DBIx::Class across PostgreSQL/DB2/Oracle schemas? -Add the name of the schema to the L -as part of the name, and make sure you give the one user you are going -to connect with has permissions to read/write all the schemas/tables as -necessary. +Add the name of the schema to the table name, when invoking +L, and make sure the user +you are about to connect as has permissions to read/write all the +schemas/tables as necessary. =back @@ -154,7 +154,7 @@ See L. =item .. use a relationship? Use its name. An accessor is created using the name. See examples in -L. +L. =back