private static extern int mysql_options(IntPtr mysql, mysql_option option, ref uint value);
 int INativeProxy.mysql_options(IntPtr mysql, mysql_option option, ref uint value)
 {
     _nativeTracer?.Trace(MethodBase.GetCurrentMethod().Name);
     return(mysql_options(mysql, option, ref value));
 }
 public int mysql_options(mysql_option option, ref uint value)
 {
     return(_nativeProxy.mysql_options(MySql, option, ref value));
 }