mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
7 lines
149 B
PHP
7 lines
149 B
PHP
<?php
|
|
sqlite_query("BEGIN", sqlite_r);
|
|
while (($row = fgetcsv($fp, 4096))) {
|
|
/* previously seen query code */
|
|
}
|
|
sqlite_query("COMMIT", sqlite_r);
|
|
?>
|