FCLT#91522 SQL van de export aanroep wel gewoon loggen (code was van mgt-generic overgenomen of zo)

svn path=/Website/branches/v2025.3/; revision=71103
This commit is contained in:
Jos Groot Lipman
2025-12-01 13:53:27 +00:00
parent 0f60c05ebb
commit c782946ed5

View File

@@ -6,7 +6,7 @@
File: fac_roundtrip_exp.asp
Description: Exporteer de gegevens van de view behorende bij de import naar een csv-bestand.
Parameters: code: Een geldige fac_import_app_code.
Note:
Note:
*/
%>
<!-- #include file="../Shared/common.inc" -->
@@ -52,7 +52,7 @@ if (imp_params.success)
var hiresTimer = new ActiveXObject("SLNKDWF.About");
var tm_start = hiresTimer.usTimer;
var sql = "SELECT * FROM " + viewname;
var oRs = Oracle.RealConnection.Execute(sql);
var oRs = Oracle.Execute(sql);
create_export(oRs, filename);
oRs.Close();
}