TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Siva V
NA
118
6.4k
Oracle connection with C#
Oct 17 2018 7:50 AM
Hi Guys,
I try to pull data from Oracle & bind my datasource. Below is my code snippet.
string sql = "Select * from Employee Where EmpId = ':EmpId'";
OracleConnection con = new OracleConnection(connectionString);
OracleCommand cmd = new OracleCommand(sql, con);
cmd.Parameters.Add(new OracleParameter("EmpId", "10");
OracleAdapter oDA = new OracleAdapter(cmd);
oDA.fill(ds);
I don't see any errors but results are not coming. but when i execute my query as follows i see results.
Select * from Employee Where EmpID = '10'; //I can see result
Could you please let me know where It's going wrong.
Thanks
Reply
Answers (
4
)
Active button should be changed into inactive button on clik
generating the pdf in c#