Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: aXML vs TT2

by ikegami (Patriarch)
on Oct 23, 2011 at 06:19 UTC ( [id://933156]=note: print w/replies, xml ) Need Help??


in reply to aXML vs TT2

I just notice you didn't include the equivalent of [% USE DBI('dbi:mSQL:mydbname') %], so it's not really a fare comparison. You surely specify the name of the database to connect to somewhere.

My question is: Does one need to load the modules, or are installed modules are loaded automatically?

Replies are listed 'Best First'.
Re^2: aXML vs TT2
by Logicus (Initiate) on Oct 23, 2011 at 06:23 UTC

    DSN information is stored in the site's private Conf.pm file, and if present automatically causes the system to use DBI and attempt to connect to the database.

    Package Conf; our $conf = { 'sitetitle' => 'Acme Site', 'dsn' => 'DBI:mysql:forum:localhost:3306', 'dsn_username' => 'xxxx', 'dsn_password' => 'xxxxxx', '404' => '404', 'default_action' => 'default', 'doc_root' => '/var/www', 'debug' => 0 }; 1;

    The values in the conf can also be accessed from within the document with the <conf> tag I.E:

    <conf>sitetitle</conf> Output: ------- Acme Site

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://933156]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-25 23:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found