I don't want to post the full code, but here is the problem I can't solve.
Code:// Reference: Oxide.Ext.MySql using System.Collections.Generic; using System; using System.Text; using Oxide.Core.Database; using Oxide.Core; using Oxide.Core.Plugins; using MySql.Data.MySqlClient; using UnityEngine;private readonly Ext.MySql.Libraries.SQLite _mySql = Interface.GetMod().GetLibrary<Ext.MySql.Libraries.SQLite>();I tried to update the code with the new changes, but no luck.Code:The type or namespace name `Ext' could not be found. Are you missing an assembly reference?
Solved Having a problem with SQL
Discussion in 'Rust Development' started by Reynostrum, Nov 12, 2016.
-
Thanks Dylan. But I still have some rare problem, because debugging in VS gives me no error, but when conpiling I get
Code:// Reference: Oxide.Core.SQLite using System.Collections.Generic; using System; using System.Text; using Oxide.Core.Database; using Oxide.Core; using Oxide.Core.Plugins; using MySql.Data.MySqlClient; using UnityEngine; using Oxide.Core.MySql;private readonly Core.MySql.Libraries.MySql _mySql = Interface.GetMod().GetLibrary<Core.MySql.Libraries.MySql>();
[DOUBLEPOST=1478924615][/DOUBLEPOST]Solved.Code:The type or namespace name `MySql' does not exist in the namespace `Oxide.Core'. Are you missing an assembly reference?
Code:// Reference: Oxide.Core.MySql private readonly Core.MySql.Libraries.MySql _mySql = Interface.GetMod().GetLibrary<Core.MySql.Libraries.MySql>();
