Samuel Nitsche

Results 68 comments of Samuel Nitsche

Hi @alesana-san I assume the log is not complete, is it? There should be a line similar to `jdbc:oracle:thin:****/**** ....` this would be the interesting part, though I guess it's...

Yes, you should definitely setup ORACLE_HOME if you want to use TNS. I don't know how tnsping works exactly, maybe it looks up the registry or something, but with utPLSQL-cli...

Might be a nice enhancement to also look for TNS_ADMIN variable. Can you check if it works with ORACLE_HOME?

@alesana-san So it did work when you set ORACLE_HOME, right? Maybe we should improve documentation to make it crystal clear that you should provide ORACLE_HOME environment variable when you want...

Thanks for your informative input, @felipebz I have absolutely no experience with Forms, so this is really the first-ever situation for me that TNSNAMES is *not* located in network/admin. One...

Sure, if you'd like to contribute we're more than happy!

Hi @SteveOgh , thanks opening an issue. What you can do is to write your password to an environment variable and use it in your call: Linux/Unix: ``` export PW=myPassword...

Hi @rafael-trevisan , at the moment there is no possibility for "global" setup/teardown scripts. You can, however, use the `%beforeall`, `%afterall` annotations in every test suite to setup your specific...

Hm, does this work with hierarchical suite-paths, too? e.g. ```sql create or replace package ut_main as -- %suite(Main) -- %suitepath(main) -- %beforeall procedure setup; end; / create or replace package...

I can see the benefit in having `startup.sql` possibility. Question is if we should put effort into preventing anything else in there than `alter session`-statements or if we leave that...