Inheritance: IDisposable
示例#1
0
    public void Dispose()
    {
	using (dbi)
	{
	    dbi = null;
	}
    }
示例#2
0
 public VxDbSchema(WvDbi _dbi)
 {
     dbi = _dbi;
     if (dbi.GetType().ToString() == "Wv.WvDbi_MySQL")
     {
        //place holder
     } 
     else
     {
         dbi.execute("set quoted_identifier off");
         dbi.execute("set ansi_nulls on");
     }
 }