Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^3: How to find MySQL database exist or not

by Marshall (Canon)
on Sep 03, 2011 at 04:06 UTC ( [id://923959]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How to find MySQL database exist or not
in thread How to find MySQL database exist or not

I think that you are mixing up a couple of things.

There is a dataset name ($dsn) which is a mySQL database on a particular host name and port number. That has to exist or you are going "nowhere"!

If the $dsn exists, then you can attempt to connect to it. This is where the user name and passwords are required.

my $dsn = "DBI:mysql:database=$database;host=$hostname;port=$port" || die "DB data set name failed $!\n"; # # second step # # my $dbh = DBI->connect($dsn, $user, $password) || die "DB connect failed $!\n";
The $dsn and the final connected handle, $dbh are very different things.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-24 22:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found