xFileControl method

  1. @override
int xFileControl(
  1. int op,
  2. int ptr
)
override

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;
}