Beakerboy / VBA-SQL-Library

Object-based Database Interaction for VBA. Create SQL Statements with VBA objects instead of string concatination.
69 stars 16 forks source link

Unable to add multiple non-joined tables to a query. #33

Closed Beakerboy closed 2 years ago

Beakerboy commented 2 years ago

The statement SELECT * FROM users, places cannot be constructed. If a second table is added with addJoin “” “places”, it is separated from the first with a space, not a comma.

Beakerboy commented 2 years ago

Fixed