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@13402 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
ersts committed Apr 27, 2010
1 parent 832aa5f commit b4d4746
Showing 1 changed file with 1 addition and 1 deletion.
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 b4d4746

Please sign in to comment.