Originally Posted by
copeg
The exception indicates the column 'customers_name' cannot be found. If you've verified it exists in your database, I would recommend stripping down the problem to do some experimenting and debugging - for instance remove the reliance of that column (and to avoid confusion specify column names in your query rather than 'SELECT *'), or just strip the report down to a single column and validate it works, then build the report back up.
SOLVED, report query was like "Select customers.id AS customer_id, . . ." and the query in NetBeans project was "Select * FROM customers".
THANKS mate for the help!!!