Fixed ROM count and platform display

* Fixed ROM count and platform display
This commit is contained in:
Michael Green
2024-01-02 22:10:04 +11:00
committed by GitHub
parent 9a215123f6
commit 47c2fc8069
2 changed files with 25 additions and 11 deletions

View File

@@ -235,7 +235,8 @@ namespace gaseous_server.Classes
{
case databaseType.MySql:
MySQLServerConnector conn = new MySQLServerConnector(ConnectionString);
return (int)conn.ExecNonQuery(Command, Parameters, Timeout);
int retVal = conn.ExecNonQuery(Command, Parameters, Timeout);
return retVal;
default:
return 0;
}