Skip to content

Commit

Permalink
-Removed spaces from connection string for MS Access files that may b…
Browse files Browse the repository at this point in the history
…e cause the connection on windows to fail

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13402 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
ersts committed Apr 27, 2010
1 parent 4a792ae commit cc63f6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ bool eVisDatabaseConnection::connect( )
}
else if ( MSACCESS == databaseType( ) )
{
mDatabase.setDatabaseName( "DRIVER = {Microsoft Access Driver ( *.mdb )};FIL = {MS Access};DBQ = " + mDatabaseName );
mDatabase.setDatabaseName( "DRIVER={Microsoft Access Driver (*.mdb)};FIL={MS Access};DBQ=" + mDatabaseName );
}
else
{
Expand Down

0 comments on commit cc63f6e

Please sign in to comment.