This is bazaar.
function TAMSBusinessServer.DBNameIsValid(
const DBName: WideString): WordBool;
begin
Result := OracleCI.OracleAliasList.IndexOf( UpperCase( DBName )) -1;
end;
This function is failing on a single W2K machine located at one of our customer sites. The OracleAliasList is empty. The site has two entries in its TNSNAMES.ORA file. The function is working on all other workstations. The W2K machine has a working Oracle client. We can connect using SQL PLUS.
Any idea what would cause this to fail?
function TAMSBusinessServer.DBNameIsValid(
const DBName: WideString): WordBool;
begin
Result := OracleCI.OracleAliasList.IndexOf( UpperCase( DBName )) -1;
end;
This function is failing on a single W2K machine located at one of our customer sites. The OracleAliasList is empty. The site has two entries in its TNSNAMES.ORA file. The function is working on all other workstations. The W2K machine has a working Oracle client. We can connect using SQL PLUS.
Any idea what would cause this to fail?