Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.How to make a lot of changes to a REAL SQL Database faster?

Answer: You may try to embed your changes to the database between two transaction calls.
Example
dim db as Database // some database

db.SQLExecute "BEGIN TRANSACTION"
// Do some Stuff
db.SQLExecute "END TRANSACTION"

This can increase speed by some factors.


The biggest plugin in space...