Hello.
I'm trying to connect with an Oracle database but i can't. This is the code that i have write:
dbConexion : TADOConnection;
dbCursor : TADODataSet;
begin
dbConexion := TADOConnection.Create(nil);
dbConexion.ConnectionString := 'Provider={Microsoft ODBC for Oracle};Server=ss-server;Data Source=;User Id=id;Password=password;';
dbConexion.LoginPrompt := False;
dbConexion.Open;
I don't know whats wrong there.
User id and password are corrects.
I'm programing in delphi 6.0 and Oracle version is 10g.
Someone can help me?
Thank you very much.
P.S.: Sorry for my low level english.