Could we have the ability to have custom "Export grid data" options? We have PHP Array, but what if I need Python Dictionary, or JSON with column names?
We could have this allowing plugins, some kind of pseudocode with placeholders where we can add an output format for each row using printf
(Not sure how HeidiSQL is made)
Before={Before Rows}
Row={Each Row}
After={After Rows}
Example of current JSON output:
Before={\n\t"table": "TABLENAME",\n\t"rows":\n\t[\n
Row=[\n\t\t\t"COLUMN_A",\n\t\t\t"COLUMN_B"\n\t\t]
After=,\n\t]\n}
or
Before={
"table": "TablaDesconocida",
"rows":
[
Row= [
"12100016",
"Rtdos negativos ejercicio 2016"
],
After= ]
}
I won't claim to know exactly how to implement this, just an idea I had.