I was not able to install 64 bit ODAC...
I solved my situation by generating the LLBLGen project and code on the other machine.
then i still had problems connecting (already in code) to database.
So that means that the problem was either my oracle client installation or oracle client it self.
I managed to solve the connection problem in my code by using 11g Oracle Instant Client and 11g ODP.NET. It's a single package available for download from oracle.
So i dumped all the relevant dlls (ODP and Client) in my bin directory and added assembly redirect to my App.config file.
<dependentAssembly>
<assemblyIdentity name="Oracle.DataAccess" publicKeyToken="89b483f429c47342" culture="neutral" />
<bindingRedirect oldVersion="2.102.2.20" newVersion="2.111.7.20" />
</dependentAssembly>
After i figured that if i do the same in to llbl (i.e put the ODP and the oracle client next to it) it might also work ...
so what i did, i added the assembly redirect to both config files (normal and x86loader config), then i put the content of instant client (some dlls ) to the drivers/oracle10g dir.
Lounched the llbl with a x86 louncher and it WORKED!!!
5 days well spent
btw .... as the tnsnames.orc is not available, use a full connection string instead of the name. something like that:
(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort))(CONNECT_DATA=(SERVER = DEDICATED)(SERVICE_NAME = MySID)))