Jump to content

Tjoene

Moderators
  • Posts

    1,430
  • Joined

  • Last visited

  • Days Won

    29

Posts posted by Tjoene

  1. That username and/or domain is not located on our system. Most likely it was deleted due to inactivity. Feel free to create a new account and restore any backup data you may have, because Heliohost does not keep any backups of your data once your account has been deleted.

     

    We apologize for the inconvenience, but we have to automatically delete inactive accounts to make room for users who are still active otherwise our servers would soon be overloaded. To prevent this from happening again in the future don't forget to log into your account at least once every 30 days.

  2. Try this:

     

    #!/usr/bin/perl
    
    use strict;
    use DBI;
    
    my $host = "localhost";
    my $database = "database1";
    my $port = 3307;
    my $tablename = "table1";
    my $user = "userName";
    my $pw = "pass";
    
    my $dbh = DBI->connect("DBI:mysql:database=$database;host=$host;port=$port",$user, $pw)
     or die "Cannot connect to MySQL server\n";

     

    source: http://stackoverflow.com/questions/2248665/perl-script-to-connect-to-mysql-server-port-3307

×
×
  • Create New...