Hi,
I have a problem with our recently installed Domino 8 server. I have the next code :
Dim conexiune As New LCConnection(“trace”)
Call SeteazaParametri(conexiune)
…
Where SeteazaParametri is:
Sub SeteazaParametri(c As LCConnection)
c.ConnectorName="oracle8"
c.server = "server/serv"
c.UserID= "IDUser"
c.Password= "Pass"
End Sub
This code worked on 6.5 , but since the upgrade to domino 8 server ( with server oracle 10.2.3. and oracle client 10g) i have some errors:
1.Error: Cannot find Connector, Connector ‘trace’ at line
Sub SeteazaParametri(c As LCConnection)
- If I set
Dim conexiune As New LCConnection(“oracle8”)
I received Error: Cannot find Connector ‘oracle8’ at line : Dim conexiune As New LCConnection(“oracle8”)
- If i have :
Dim conexiune As New LCConnection(“trace”)
Call SeteazaParametri(conexiune)
…
Where SeteazaParametri is:
Sub SeteazaParametri(c As LCConnection)
c.ConnectorName="trace"
c.server = "server/serv"
c.UserID= "IDUser"
c.Password= "Pass"
End Sub
I received error :
Instance member SERVER does not exist
Very strange is that exactly this code worked on 6.5.
The new Domino Server (8) was installed on a new server, so it wasn’t really an upgrade.
I think I have to install someting else on server but I don’t know exactly what.
Do u know what can be the problem?
Thanks.