RE: first time accessing

2005-01-06 Thread Gerald Preston
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

RE: first time accessing

2005-01-06 Thread Gerald Preston
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

RE: first time accessing

2005-01-06 Thread Tom Crimmins
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

RE: first time accessing

2005-01-06 Thread Gerald Preston
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

RE: first time accessing

2005-01-06 Thread Tom Crimmins
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

RE: first time accessing

2005-01-06 Thread Gerald Preston
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

RE: first time accessing

2005-01-03 Thread Logan, David (SST - Adelaide)
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

RE: first time accessing

2005-01-03 Thread Tom Crimmins
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