[Dbix-class] How do I get DBIx::Class to quote User table and user collum in SQL Server ?

Paul Findlay Paul.Findlay at fonterra.com
Fri Jun 21 05:29:22 GMT 2013


Hi Hugh

You seem to be putting quote_char and name_sep into their own hash ref. You should have them directly in the connect_info hash ref:

    connect_info => {
        dsn => 'dbi:ODBC:driver={SQL Server};server=.....;',
        user => '...',
        password => .....',

        LongTruncOk=>1,
        LongReadLen=>5000,

        on_connect_do => q{},
        quote_char => [qw/[ ]/],
        name_sep => q{.},
    }

Kind regards,

Paul Findlay



DISCLAIMER
This email contains information that is confidential and which may be legally privileged. If you have received this email in error, please notify the sender immediately and delete the email. This email is intended solely for the use of the intended recipient and you may not use or disclose this email in any way.



More information about the DBIx-Class mailing list