Click here to Skip to main content
15,793,546 members
Home / Discussions / C#
   

C#

 
GeneralRe: Mathematical Question Pin
lukeer6-Nov-12 0:47
lukeer6-Nov-12 0:47 
QuestionRe: Mathematical Question Pin
n.podbielski5-Nov-12 23:06
n.podbielski5-Nov-12 23:06 
AnswerRe: Mathematical Question Pin
Pete O'Hanlon5-Nov-12 23:13
subeditorPete O'Hanlon5-Nov-12 23:13 
GeneralRe: Mathematical Question Pin
Abrek Okur5-Nov-12 23:15
Abrek Okur5-Nov-12 23:15 
GeneralRe: Mathematical Question Pin
Pete O'Hanlon5-Nov-12 23:17
subeditorPete O'Hanlon5-Nov-12 23:17 
GeneralRe: Mathematical Question Pin
n.podbielski5-Nov-12 23:43
n.podbielski5-Nov-12 23:43 
AnswerRe: Mathematical Question Pin
Ingo6-Nov-12 5:56
Ingo6-Nov-12 5:56 
QuestionAssigning Variables in C# for ORACLE Pin
KingJames065-Nov-12 20:52
KingJames065-Nov-12 20:52 
Hi, Im using Oracle database and I cant find the solution for SELECT,UPDATE,DELETE,INSERT query to access the ORACLE tables using VARIABLE in C# . .

Im using this Code and it dosnt work? what should I need to do? I think there is something wrong in (cmd.Parameters.Add) when I do assign VARIABLES.

con.Open();
cmd.Connection = con;
cmd.CommandType = CommandType.Text;
cmd.CommandText = "INSERT INTO OUT_TEXT_NORM (KEY,LANG_ID,TEXT, PRIO) VALUES (:key,:lang_id,:text,:prio)";
cmd.Parameters.Add(":key", OracleDbType.Varchar2, 60).Value = key;
cmd.Parameters.Add(":lang_id", OracleDbType.Int32).Value = lang_id;
cmd.Parameters.Add(":text", OracleDbType.Varchar2, 4000).Value = text;
cmd.Parameters.Add(":prio", OracleDbType.Int32).Value = prio;
cmd.ExecuteNonQuery();
AnswerRe: Assigning Variables in C# for ORACLE Pin
Abhinav S5-Nov-12 22:16
Abhinav S5-Nov-12 22:16 
GeneralRe: Assigning Variables in C# for ORACLE Pin
KingJames065-Nov-12 23:13
KingJames065-Nov-12 23:13 
GeneralRe: Assigning Variables in C# for ORACLE Pin
Eddy Vluggen6-Nov-12 0:45
professionalEddy Vluggen6-Nov-12 0:45 
GeneralRe: Assigning Variables in C# for ORACLE Pin
KingJames066-Nov-12 15:38
KingJames066-Nov-12 15:38 
GeneralRe: Assigning Variables in C# for ORACLE Pin
Eddy Vluggen6-Nov-12 23:45
professionalEddy Vluggen6-Nov-12 23:45 
QuestionC#, Win'7, Port Mystery Pin
C-P-User-35-Nov-12 13:49
C-P-User-35-Nov-12 13:49 
AnswerRe: C#, Win'7, Port Mystery Pin
Pete O'Hanlon5-Nov-12 23:18
subeditorPete O'Hanlon5-Nov-12 23:18 
GeneralRe: C#, Win'7, Port Mystery Pin
C-P-User-36-Nov-12 7:03
C-P-User-36-Nov-12 7:03 
QuestionReading XML Pin
Kevin Marois5-Nov-12 8:34
professionalKevin Marois5-Nov-12 8:34 
AnswerRe: Reading XML Pin
Eddy Vluggen5-Nov-12 9:25
professionalEddy Vluggen5-Nov-12 9:25 
GeneralRe: Reading XML Pin
Kevin Marois5-Nov-12 11:09
professionalKevin Marois5-Nov-12 11:09 
GeneralRe: Reading XML Pin
Eddy Vluggen5-Nov-12 11:20
professionalEddy Vluggen5-Nov-12 11:20 
AnswerRe: Reading XML Pin
Clifford Nelson5-Nov-12 13:23
Clifford Nelson5-Nov-12 13:23 
QuestionGenerics? Pin
David Knechtges5-Nov-12 6:50
David Knechtges5-Nov-12 6:50 
AnswerRe: Generics? Pin
Alan Balkany5-Nov-12 6:53
Alan Balkany5-Nov-12 6:53 
AnswerRe: Generics? Pin
harold aptroot5-Nov-12 6:59
harold aptroot5-Nov-12 6:59 
AnswerRe: Generics? Pin
Matt T Heffron5-Nov-12 12:29
professionalMatt T Heffron5-Nov-12 12: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.