Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dotnet/src/dotnetframework/GxClasses/Data/GXDataADO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down