1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-18 20:31:19 +02:00

Improve speed of CSV import

This commit is contained in:
Jakub Vrana
2013-07-09 11:34:12 -07:00
parent 9de402aaf0
commit 56b0917acd
8 changed files with 74 additions and 37 deletions

View File

@@ -53,10 +53,10 @@
/** Insert or update data in table
* @param string
* @param array
* @param array columns in keys
* @param array of arrays with escaped columns in keys and quoted data in values
* @return bool
*/
/*abstract*/ function insertUpdate($table, $set, $primary) {
/*abstract*/ function insertUpdate($table, $rows, $primary) {
return false;
}