DataEcon_jll.daec2csvMethod
daec2csv(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of daec2csv.

Example

daec2csv() do exe
    run(`$exe $arguments`)
end
Julia 1.3
DataEcon_jll.daec2csvMethod
daec2csv(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of daec2csv. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(daec2csv()) $arguments`)
Julia 1.6
DataEcon_jll.deshMethod
desh(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of desh.

Example

desh() do exe
    run(`$exe $arguments`)
end
Julia 1.3
DataEcon_jll.deshMethod
desh(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of desh. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(desh()) $arguments`)
Julia 1.6
DataEcon_jll.sqlite3shellMethod
sqlite3shell(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of sqlite3shell.

Example

sqlite3shell() do exe
    run(`$exe $arguments`)
end
Julia 1.3
DataEcon_jll.sqlite3shellMethod
sqlite3shell(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of sqlite3shell. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(sqlite3shell()) $arguments`)
Julia 1.6