semsol / arc2

ARC RDF Classes for PHP
Other
331 stars 92 forks source link

Introduce transaction support #110

Closed k00ni closed 6 years ago

k00ni commented 6 years ago

Transaction support would allows you to group SPARQL commands and rollback, if an error occurs while the transaction is still open. Very helpful in scenarios, in which you rely on a consistent database.

Unfortunately, this doesn't work with MyISAM tables, which means, as long as ARC2 uses MyISAM tables per default, transaction support via PDO is not possible. Source

k00ni commented 6 years ago

Done.