Greetings,
I'm attempting to access a MS Acess database, but getting the following error.
Syntax error (missing operator) in query expression 'Org Name'.
The error occurs between the following two lines.
String SQL = "SELECT Org Name FROM OrganizationTable";
ResultSet resultset = statement.executeQuery(SQL);
Where Org Name is the data set I'm trying to access and OrganizationTable is the database table.
Any help would be appreciated.