ORA-06413: Connection not open.
try
{
OleDbConnection con = new OleDbConnection("provider=MSDAORA;data source=XXXXX;user id=XXXXX;password=XXXX;server=XXXXXX");
con.Open();
}
catch (Exception Ex)
{
Response.Write(Ex.ToString());
}
Above code is working fine(Connecting DB) in windows applications
but not working in Web Applications on same system.
system configurations are
Client : Win 7 Professional 64 bit laptop
DB Client : 10g 32 bit
DB Server : 10g 32 bit
Please help me out i used same code in lot of applications ,if i change the above procedure i need to change in all apps,so please give me a better solution
Thanking you.
Loading
GiriPrasad GPosted Oct 5, 2012, 8:08 AM
above 2 solutions are not solved my problem
GiriPrasad GPosted Oct 5, 2012, 8:06 AM
R ACHUTHAPosted Oct 5, 2012, 7:50 AM
which error message your getting while working with web application can you share it, and mean while refer the below link
http://www.startvbdotnet.com/ado/oracle.aspx
Kunal VaishyaPosted Oct 5, 2012, 7:45 AM
//--------------------------------------------------------------------------------------