1. 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>();
    
    Code:
    The type or namespace name `Ext' could not be found. Are you missing an assembly reference?
    I tried to update the code with the new changes, but no luck.
     
  2. 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>();
    Code:
    The type or namespace name `MySql' does not exist in the namespace `Oxide.Core'. Are you missing an assembly reference?
    [DOUBLEPOST=1478924615][/DOUBLEPOST]Solved.

    Code:
    // Reference: Oxide.Core.MySql
            private readonly Core.MySql.Libraries.MySql _mySql = Interface.GetMod().GetLibrary<Core.MySql.Libraries.MySql>();