Interface DuckDBOPFSConfig

interface DuckDBOPFSConfig {
    fileHandling?: "auto" | "manual";
}

Properties

Properties

fileHandling?: "auto" | "manual"

Defines how opfs:// files are handled during SQL execution.

  • "auto": Automatically register opfs:// files and drop them after execution.
  • "manual": Files must be manually registered and dropped.