markTestSkipped("SQLite extension not loaded"); } Arsse::$conf->dbSQLite3File = ":memory:"; $this->drv = new Driver(); } public function nextID(string $table): int { return $this->drv->query("SELECT (case when max(id) then max(id) else 0 end)+1 from $table")->getValue(); } }