xFileControl method
Handle a file control
request with the given operand and pointer (represented as its address to
avoid a dart:ffi import in common code).
Implementation
@override
int xFileControl(int op, int ptr) {
// "VFS implementations should return SQLITE_NOTFOUND for file control
// opcodes that they do not recognize."
return SqlError.SQLITE_NOTFOUND;
}