Hi
in the acquireconnection method Using the below statment I can get a connection Object
oledbConnection = cmado.AcquireConnection(transaction) as OleDbConnection;
from the connection object I can get the connectionstring from the object by calling
oledbConnection.connectionstring() property which will have all the details like DataBase, UserName & other Inofrmation but there is no password Info.
How to get the password Information, I need that information since I will use that info to make OCI calls to fetch the data from the Oracle database in m,y custome source component.
any help is much appriciated
thanks in advance.
Just a guess, but look up OleDbConnection in the framework documentation, and see this-
The .NET Framework Data Provider for OLE DB does not persist or return the password in a connection string unless you set the Persist Security Info keyword to true (not recommended). To maintain a high level of security, it is strongly recommended that you use the Integrated Security keyword with Persist Security Info set to false.
Saying that, the password property may just be write-only, they often are for security, but I cannot find documentation for the extended properties right now.
|||so does that mean that its not possible to extract password from connection Object
|||Hi,
we are in process of developing custom source component. At design time we are using OLEDB connection to get the metadata.
we want to use the connection information given at design time by user to initialize OracleConnection of System.Data.OracleClient.
Can anybody guide us how to acheive this?
Thanks,
Anil
|||To be clear you must be using an ADO.Net OLE-DB connection, not the native OLE-DB connection otherwise you won't be able to make head nor tail of the acquired connection. With that in mind, why not just use an ADO.NET OracleClient directly and stop messing about with "converting" it?
|||Hi Darren,
Thanks for your reply. but we cant go ahead by specifying the connection type as ADO.Net: OracleClient as we are using the UI for some other component as well.
Is there any other way to do the same?
Thanks,
Anil.
|||Why do you want OleDb connections one minute and Oracle the next. They are very similar, but yet still different so masking one with the other does not make sense. Having multiple connections is not a problem. What UI? If it is your own Ui creating the OleDb connection, then why can it not create Oracle as well?|||I created a single connection, ConnectionManagerType - ADO.NET:System.Data.OleDb.OleDbConnection..., which used the "Microsoft OLE DB Provider for Oracle" underneath.
I then used the following Script Task code to display the connection string and it shows the password just fine.
Public Sub Main()
Dim conn As ConnectionManager = Dts.Connections(0)
Dim oledb As OleDb.OleDbConnection = CType(conn.AcquireConnection(Nothing), OleDb.OleDbConnection)
System.Windows.Forms.MessageBox.Show(oledb.ConnectionString)
Dts.TaskResult = Dts.Results.Success
End Sub
I cannot see the problem, password is there, is this not what you want?
|||Hi Darren
Dim oledb As OleDb.OleDbConnection = CType(conn.AcquireConnection(Nothing), OleDb.OleDbConnection)
System.Windows.Forms.MessageBox.Show(oledb.ConnectionString)
If the User Selects the Check Box "Save Password" then the password is there in the connection string Otherwise no.
Is there any way that we can get the password if the user has not select the option to save the password.
|||No.
The .NET Framework Data Provider for OLE DB does not persist or return the password in a connection string unless you set the Persist Security Info keyword to true (not recommended). To maintain a high level of security, it is strongly recommended that you use the Integrated Security keyword with Persist Security Info set to false.
No comments:
Post a Comment