How to connect online with oracle
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Well for this first you have to download oracleclient.dll and then add this to your project and use this with ado.net include the following namespace using System.Data.OracleClient; then for connection use; public OracleConnection con=new OracleConnection(ConfigurationSettings.AppSettings["strCON"]); and command use: OracleCommand cmd=new OracleCommand(); Hope this will help