From cdbfaf1b65538a1cdaf4cf0def2ac7728f11c945 Mon Sep 17 00:00:00 2001 From: Christian Ehrlicher Date: Fri, 10 Mar 2023 06:56:21 +0100 Subject: [PATCH] SQL/OCI: Compile with QT_NO_CAST_FROM_ASCII Don't know why this even went through the ci. Pick-to: 6.5 Change-Id: I9f0d1cee0c600c98f5b71bdd10f8f0260e43afcf Reviewed-by: Volker Hilsheimer --- src/plugins/sqldrivers/oci/qsql_oci.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/sqldrivers/oci/qsql_oci.cpp b/src/plugins/sqldrivers/oci/qsql_oci.cpp index 3dfb4f38d8..ffad5e88cd 100644 --- a/src/plugins/sqldrivers/oci/qsql_oci.cpp +++ b/src/plugins/sqldrivers/oci/qsql_oci.cpp @@ -141,7 +141,7 @@ QOCIDateTime::QOCIDateTime(OCIEnv *env, OCIError *err, const QDateTime &dt) const QDate date = dt.date(); const QTime time = dt.time(); // Zone in +hh:mm format - const QString timeZone = dt.toString("ttt"); + const QString timeZone = dt.toString("ttt"_L1); const OraText *tz = reinterpret_cast(timeZone.utf16()); OCIDateTimeConstruct(env, err, dateTime, date.year(), date.month(), date.day(), time.hour(), time.minute(), time.second(), time.msec() * 1000000,