mikehenrty / thin-pdo-wrapper

A simple database client utilizing PHP PDO.
MIT License
68 stars 32 forks source link

Connection fails when port is specified #7

Closed tohirsolomons closed 10 years ago

tohirsolomons commented 10 years ago

Line 229 is $connection_string .= "port=$port";

Should have a semicolon:

$connection_string .= ";port=$port";

mikehenrty commented 10 years ago

Thanks for the report! Any chance you'd wanna submit a PR to fix it? :)

mikehenrty commented 10 years ago

Fixed with #8, thanks again @tohirsolomons!