Click here to Skip to main content
15,902,839 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to create a connection string in webconfig Pin
Vani Kulkarni22-Apr-13 17:59
professionalVani Kulkarni22-Apr-13 17:59 
GeneralRe: How to create a connection string in webconfig Pin
DeveloperLife201523-Apr-13 11:46
DeveloperLife201523-Apr-13 11:46 
AnswerRe: How to create a connection string in webconfig Pin
Aatif Ali from Bangalore3-Jul-13 0:10
professionalAatif Ali from Bangalore3-Jul-13 0:10 
QuestionAccessing ORACLE 11g database through c#.net Pin
Member 369573921-Apr-13 21:15
Member 369573921-Apr-13 21:15 
AnswerRe: Accessing ORACLE 11g database through c#.net Pin
Bernhard Hiller21-Apr-13 21:24
Bernhard Hiller21-Apr-13 21:24 
GeneralRe: Accessing ORACLE 11g database through c#.net Pin
Member 369573921-Apr-13 21:30
Member 369573921-Apr-13 21:30 
AnswerRe: Accessing ORACLE 11g database through c#.net Pin
Karthik Harve22-Apr-13 1:35
professionalKarthik Harve22-Apr-13 1:35 
AnswerRe: Accessing ORACLE 11g database through c#.net Pin
jkirkerx22-Apr-13 8:19
professionaljkirkerx22-Apr-13 8:19 
You can use the Microsoft DLL, but it's been discontinued and no longer supported, or use the Oracle DLL, which is pretty fast in operation. I used the Oracle DLL's, and it took me a couple of days to figure out the whole thing.

I think there was a installation program I had to run on the web server that installed some stuff to connect to the Oracle Server.

ODAC1120320Xcopy_32bit - This program

Oracle.DataAccess.dll
Oracle.Web.dll

a sample connection string, and reader programming. All types, integer, string ended up being just GetValue.
 Dim conStr As String = "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=SQL1.domain.local)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=XE))); User Id=RC_PUBLIC_USER; Password=SECURE;"

Dim con As New OracleConnection(conStr)
Dim cmd As New OracleCommand(cmdQuery, con)
cmd.CommandType = Data.CommandType.Text

con.Open()
Dim oReader As OracleDataReader = cmd.ExecuteReader
While oReader.Read()
     pI(rC).p_ID = oReader.GetValue(0)           'PN_ID
     pI(rC).c_ID = oReader.GetValue(1)           'C_ID
     pI(rC).c_Name = oReader.GetValue(2)         'C_Name


Anyways, I really like the Oracle Platform 11.g, hard to understand at first, because they don't use tables, Technically they say there are no such thing as tables. It's really fast, wow

Others told me to use I think ADO, or some other universal way to connect, your choice.
GeneralRe: Accessing ORACLE 11g database through c#.net Pin
Jasmine250122-Apr-13 9:02
Jasmine250122-Apr-13 9:02 
GeneralRe: Accessing ORACLE 11g database through c#.net Pin
jkirkerx22-Apr-13 10:27
professionaljkirkerx22-Apr-13 10:27 
GeneralRe: Accessing ORACLE 11g database through c#.net Pin
Jasmine250122-Apr-13 11:05
Jasmine250122-Apr-13 11:05 
GeneralRe: Accessing ORACLE 11g database through c#.net Pin
jkirkerx22-Apr-13 11:39
professionaljkirkerx22-Apr-13 11:39 
GeneralRe: Accessing ORACLE 11g database through c#.net Pin
Jasmine250122-Apr-13 13:01
Jasmine250122-Apr-13 13:01 
Questionworker process Pin
Member 870181321-Apr-13 20:34
Member 870181321-Apr-13 20:34 
AnswerRe: worker process Pin
Marco Bertschi21-Apr-13 21:16
protectorMarco Bertschi21-Apr-13 21:16 
GeneralASP.NET Pin
Sugu Thomas21-Apr-13 17:39
professionalSugu Thomas21-Apr-13 17:39 
AnswerRe: ASP.NET Pin
Sandeep Mewara21-Apr-13 19:14
mveSandeep Mewara21-Apr-13 19:14 
GeneralRe: ASP.NET Pin
Sugu Thomas22-Apr-13 5:18
professionalSugu Thomas22-Apr-13 5:18 
Questionhelp help help T_T create for loop Pin
Michael†Cheong21-Apr-13 8:42
Michael†Cheong21-Apr-13 8:42 
AnswerRe: help help help T_T create for loop Pin
Jasmine250122-Apr-13 9:18
Jasmine250122-Apr-13 9:18 
GeneralRe: help help help T_T create for loop Pin
Michael†Cheong22-Apr-13 19:45
Michael†Cheong22-Apr-13 19:45 
QuestionHOW TO DEPLOY or PUBLISH CRYSTAL REPORT TO WEB SERVER IN VISUAL STUDIO 2010 Pin
JYOTIRMOY SAMANTA21-Apr-13 6:55
JYOTIRMOY SAMANTA21-Apr-13 6:55 
AnswerRe: HOW TO DEPLOY or PUBLISH CRYSTAL REPORT TO WEB SERVER IN VISUAL STUDIO 2010 Pin
Sandeep Mewara21-Apr-13 19:18
mveSandeep Mewara21-Apr-13 19:18 
GeneralRe: HOW TO DEPLOY or PUBLISH CRYSTAL REPORT TO WEB SERVER IN VISUAL STUDIO 2010 Pin
JYOTIRMOY SAMANTA21-Apr-13 21:39
JYOTIRMOY SAMANTA21-Apr-13 21:39 
QuestionDataBase Problem @@ Pin
Michael†Cheong21-Apr-13 5:29
Michael†Cheong21-Apr-13 5:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.