tora-tool / tora

TOra is an open source SQL IDE for Oracle, MySQL and PostgreSQL dbs
http://torasql.com/
GNU General Public License v2.0
290 stars 58 forks source link

TOra forgets ORACLE_HOME #115

Closed Blandinium closed 6 years ago

Blandinium commented 6 years ago

Steps to reproduce: On a Windows system with TOra3 v3.2-141-gb7ccf117 and without a ORACLE_HOME environment variable:

The background: I depend on a number of 32 bit applications that need the 32bit Oracle driver to work. When I set a system variable ORACLE_HOME winch points to a 64bit Oracle client, TOra works, but these other applications break. I tried creating a bat file to start TOra in which I set the ORACLE_HOME variable:

@echo off
setlocal 
  set ORACLE_HOME=C:\MyOracleFolder && C:\MyTOraFolder\Tora.exe
endlocal

But TOra doesn't seem to pick up ORACLE_HOME when defined this way. Setting it in the TOra preferences works, but on a restart TOra forgets this setting again (as described above).

ibre5041 commented 6 years ago

fixed. try the last version.

Blandinium commented 6 years ago

The issue is indeed fixed in Version v3.2-146-g4da93df1. Thanks!