As the question above. Can I save data to multiple tables at a time on a CachedRowSet using a JOIN query statement?
Sample sql query statement as below
SELECT * FROM student INNER JOIN class ON student.class_id = class.id
Is it possible or should I use JoinRowSet or something else instead? Any help would be appreciated. Thank you in advance.