public void Init() { // SQLite doesn't work on power or z linux if (Directory.Exists("/proc/ppc64") || Directory.Exists("/proc/dasd")) { Assert.Ignore(); } SuperInit(); file = Path.GetTempFileName() + ".db"; connect = "URI=file:" + file + ",version=3"; db = new SQLiteRegionData(); db.Initialise(connect); }
public void Init() { // SQLite doesn't work on power linux if (Directory.Exists("/proc/ppc64")) { Assert.Ignore(); } SuperInit(); file = Path.GetTempFileName() + ".db"; connect = "URI=file:" + file + ",version=3"; db = new SQLiteRegionData(); db.Initialise(connect); }