![]() |
Sergey Kornilov admin 3/17/2010 |
Need some clarification. |
L
|
lordkain2 author 3/17/2010 |
Need some clarification. To update all records you can insert a button (PHPRunner 5.2) and execute update SQL query there. Not sure if this is what you looking for.
|
![]() |
Sergey Kornilov admin 3/18/2010 |
Thanks, makes sense. |
L
|
lordkain2 author 3/18/2010 |
Thanks, I found the solution, just change in line 469 of TABLE_import.php from this: $sql = "insert into ".AddTableWrappers($strOriginalTableName)." (".implode(",", $fields_list).") values (".$values_list.")";
$sql = "replace into ".AddTableWrappers($strOriginalTableName)." (".implode(",", $fields_list).") values (".$values_list.")";
|
G
|
gchable 3/18/2010 |
![]() |
Sergey Kornilov admin 3/20/2010 |
If you need to alter default import behaviour use 'Before Insert Record' event on the import page. This is really the best way and your changes won't be lost after rebuild. |