how to insert multiple record to MySQL

hello, i have a listview data, and i want to insert all of the that to the database. but i don’t know what i have to do. every i insert the record use control “for each item”, sadly the data will be duplicate as much data as there is in the list. anyone can help me? please…

you can experiment with this

or use an INSERT INTO statement record by record and do it asynchronously… see also this example (which is about something completely different but uses the same logic you will have to use…)

Taifun