Tom,
I am running 'WinMySQLadmin 4.1". Can I use this tool to change anything?
Jerry
-Original Message-
From: Tom Crimmins [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 06, 2005 11:24 AM
To: Gerald Preston
Cc: mysql@lists.mysql.com
Subject: RE: first time accessing
Tom,
I am still getting access denied when I try ',mysql -u root'.
Jerry
-Original Message-
From: Tom Crimmins [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 06, 2005 11:24 AM
To: Gerald Preston
Cc: mysql@lists.mysql.com
Subject: RE: first time accessing
If you are usi
unty, Iowa
-Original Message-
From: Gerald Preston [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 06, 2005 3:08 PM
To: 'Tom Crimmins'
Cc: mysql@lists.mysql.com
Subject: RE: first time accessing
Tom,
I still get access denied. I just reinstall the latest version yesterday.
Wha
this works, you can change the host in your perl script to localhost, and
you should be ready to go.
---
Tom Crimmins
Interface Specialist
Pottawattamie County, Iowa
-Original Message-
From: Gerald Preston
Sent: Thursday, January 06, 2005 5:25 AM
To: 'Tom Crimmins'
Cc: mysql
n change the host in your perl script to localhost, and
you should be ready to go.
---
Tom Crimmins
Interface Specialist
Pottawattamie County, Iowa
-Original Message-
From: Gerald Preston
Sent: Thursday, January 06, 2005 5:25 AM
To: 'Tom Crimmins'
Cc: mysql@lists.mysql.com
Subjec
wanting to do is connect and create a new table.
Any ideas?
Thanks,
Jerry
-----Original Message-
From: Tom Crimmins [mailto:[EMAIL PROTECTED]
Sent: Monday, January 03, 2005 3:52 PM
To: Gerald Preston
Cc: mysql@lists.mysql.com
Subject: RE: first time accessing
Try something like t
Hi Gerald,
Check your syntax, I can't see the hostname or database name in your
connect statement. I have a statement similar to that below. Note the
hostname and database.
my %err_handle = (
PrintError => 1,
RaiseError => 1
);
$dsn = "DBI:mysql:host=$ho
Try something like this:
use DBI;
my $driver = "mysql";
my $server = "myhost";
my $database = "mydb";
my $url = "DBI:$driver:$database:$server";
my $user = "username";
my $pass = "password";
my $dbh = DBI->connect($url, $user, $pass)
|| die "Couldn't connect