예제 #1
0
    // must be run from the SQLite thread
    public static void Run(Notebook notebook, ScriptEnv env, ScriptRunner runner, Ast.ExportTxtStmt stmt)
    {
        var exporter = new ExportTxtStmtRunner(notebook, env, runner, stmt);

        exporter.Export();
    }
예제 #2
0
 private void ExecuteExportTxtStmt(Ast.ExportTxtStmt stmt, ScriptEnv env)
 {
     ExportTxtStmtRunner.Run(_notebook, env, this, stmt);
 }