Help for this page

Select Code to Download


  1. or download this
    Useless use of private variable in void context at Makefile.PL line 43
    +1.
    
    ...
    the free iODBC Driver Manager in the iodbcsrc directory.
    
    Makefile.PL aborted.
    
  2. or download this
    sub ConnectToDB 
    {
    ...
                my $dsn = "DBI:mysql:host=$host_name;database=$db_name";
                return (DBI->connect ($dsn, "usernameHere", "PasswordHere"
    +, {PrintError => 0, RaiseError => 1}));
    }
    
  3. or download this
    sub ConnectToDB 
    {
    ...
                return (DBI->connect ($dsn, "UserNameHere", "PassWordHere"
    +)); #
    Clients being the name I set in the Windows Data Sources (ODBC)
    }