Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

Can't connect, no database driver specified at Links/DBSQL.pm line 171

Quote Reply
Can't connect, no database driver specified at Links/DBSQL.pm line 171
Let's start new threads with problems, things are getting too deeply burried.

That's a very common error Smile If you re-install and forget to follow the instructions.

Link 171 is:
Code:
$db->connect (['DBI:mysql:links:localhost', $user, $pass]);

in that line, the single quotes mean no interpretation by perl will occur, so that part will be passed to the routine directly.
therefore, 'mysql' must be the database installed and 'links' must be the database name. You must also be on 'localhost'. The $user and $pass are from the setup you did in the SQL.pl file, and are inserted at the top of several of the files in the defs directory.

If you change the password -- you must edit those files and make sure they have the correct user and password.

Subject Author Views Date
Thread Can't connect, no database driver specified at Links/DBSQL.pm line 171 pugdog 5712 Jul 18, 1999, 9:14 PM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
dearnet 5582 Jul 19, 1999, 12:35 PM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
pugdog 5569 Jul 19, 1999, 6:28 PM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
dearnet 5569 Jul 19, 1999, 8:11 PM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
pugdog 5561 Jul 19, 1999, 8:21 PM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
pugdog 5582 Jul 19, 1999, 9:52 PM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
dearnet 5560 Jul 20, 1999, 7:37 AM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
Alex 5575 Jul 20, 1999, 10:26 AM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
Alex 5589 Jul 20, 1999, 10:27 AM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
dearnet 5564 Jul 20, 1999, 1:34 PM
Post Re: Can't connect, no database driver specified at Links/DBSQL.pm line 171
Alex 5558 Jul 20, 1999, 2:21 PM