Jani Hur
Jani Hur
Just a clarification. Is this issue about a `clob` counterpart of this `oos_util_string` subprogram ? ``` plsql -- package: oos_util_string function string_to_table( p_string in clob, p_delimiter in varchar2 default gc_default_delimiter)...
``` jani@mba:~$ foo=foo.zip jani@mba:~$ foo=foo(1).zip -bash: syntax error near unexpected token `(' jani@mba:~$ foo="foo(1).zip" jani@mba:~$ ``` Add the quotes to the examples in README and config.properties "template"-file ? ``` OOS_ORACLE_FILE_URL="CHANGEME"...
@JuergenSchuster I fail to see why one would like to log "nothing". Is the purpose to record a wall clock time of the program execution ? But the logger have...
I have `robot-mode.el` in `~/.emacs.d`-directory and following in my `~/.emacs.d/init.el`: ``` lisp (setq load-path (cons "~/.emacs.d" load-path)) (autoload 'robot-mode "robot-mode") ``` The first line of all my test files is:...
This is a rather common scenario in my work.
Phases in the manifest file (i.e. `Invoke` et al.) should also be covered!
What's that `-DPath` flag? The v0.7.3 help doesn't know about it. I was expecting to see `-path` here.
A related issue: The `package` command doesn't clean up the temporary directory it creates. IMO the result of the command is the module package (i.e. tar) file, not the directory....
Also consider the case when the package tar file already exists. Automatic overwrite or something else? I don't see here a clear winner as long as the behavior is documented.
Managed to write my first resource processor! AFAICS a custom resource processor can't be used to redefine a single phase of an existing resource processor (because how `OnBeforePhase()`, `OnAfterPhase()` and...