diff --git a/dotnet/src/dotnetframework/GxClasses/Data/GXDataADO.cs b/dotnet/src/dotnetframework/GxClasses/Data/GXDataADO.cs index ef4fed9d4..e3c479fe2 100644 --- a/dotnet/src/dotnetframework/GxClasses/Data/GXDataADO.cs +++ b/dotnet/src/dotnetframework/GxClasses/Data/GXDataADO.cs @@ -2654,7 +2654,7 @@ GxDataRecord getDbmsDataRecord(string id, string dbms) if (Config.GetValueOf("Connection-" + id + "-PROVIDER", out cfgBuf) && cfgBuf.ToLower() == "mysqlconnector") return new GxMySqlConnector(id); else - return new GxMySqlDriverCS(id, prepStmt); + return new GxMySql(id, prepStmt); #endif case "sqlite": return new GxSqlite(); diff --git a/dotnet/src/dotnetframework/GxClasses/Data/GXDataMysqlDriverCS.cs b/dotnet/src/dotnetframework/GxClasses/Data/GXDataMysqlDriverCS.cs index eb2c6bf53..0c0f46ef0 100644 --- a/dotnet/src/dotnetframework/GxClasses/Data/GXDataMysqlDriverCS.cs +++ b/dotnet/src/dotnetframework/GxClasses/Data/GXDataMysqlDriverCS.cs @@ -10,20 +10,20 @@ namespace GeneXus.Data { - public class GxMySqlDriverCS : GxDataRecord + public class GxMySql : GxDataRecord { - static readonly ILog log = log4net.LogManager.GetLogger(typeof(GeneXus.Data.GxMySqlDriverCS)); + static readonly ILog log = log4net.LogManager.GetLogger(typeof(GeneXus.Data.GxMySql)); private int MAX_TRIES; private int m_FailedConnections; private bool preparedStmts; - public GxMySqlDriverCS(string id) + public GxMySql(string id) { if (GxContext.isReorganization && !GXUtil.ExecutingRunX86()) { MYSQL_FIELD_FACTORY.GetInstance();//Force libmysql load } } - public GxMySqlDriverCS(string id, bool prepStmt) : this(id) + public GxMySql(string id, bool prepStmt) : this(id) { preparedStmts = prepStmt; }