I want to know which is a better approach of inserting multiple rows in database:
- Using one query to do this or
for( int x = 0; x < y.length; x++ ) { insertRowsIntoDatabase( valuesHere ); }- Or you guys have another approach? Please share.
My data is consist about 8 columns and 50 rows.