Click here to Skip to main content
15,917,473 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: What is asp.net equivalent of following code Pin
AmitGajjar23-Apr-13 0:38
professionalAmitGajjar23-Apr-13 0:38 
AnswerRe: What is asp.net equivalent of following code Pin
Marco Bertschi23-Apr-13 1:40
protectorMarco Bertschi23-Apr-13 1:40 
QuestionValidation for a Currency textbox Pin
Michael†Cheong22-Apr-13 19:47
Michael†Cheong22-Apr-13 19:47 
AnswerRe: Validation for a Currency textbox Pin
AmitGajjar23-Apr-13 0:43
professionalAmitGajjar23-Apr-13 0:43 
AnswerRe: Validation for a Currency textbox Pin
Yosh_24-Apr-13 21:45
professionalYosh_24-Apr-13 21:45 
QuestionGrid/Dropdown View Pin
Sugu Thomas22-Apr-13 16:51
professionalSugu Thomas22-Apr-13 16:51 
AnswerRe: Grid/Dropdown View Pin
Marco Bertschi23-Apr-13 1:44
protectorMarco Bertschi23-Apr-13 1:44 
QuestionHow to create a connection string in webconfig Pin
DeveloperLife201522-Apr-13 15:00
DeveloperLife201522-Apr-13 15:00 
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 

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.