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
s_zel_s
NA
1
0
How to display the record and use NEXT and Prev buttons?
Jan 7 2005 8:12 PM
Please help me I don't know who else to ask or go for help to: I want to display a RAND_ID (which is just an id in my table), but when the user presses button next I want to show next ip in the row. My code: BindingManagerBase bmStud; OracleConnection conn; try { conn = new OracleConnection("User Id=system;Password=serv123;Data Source=;"); conn.Open(); DataAdpt = new OracleDataAdapter("SELECT * FROM info", conn); CmdBuild = new OracleCommandBuilder(DataAdpt); DataSet1 = new DataSet("info"); DataTable1 = new DataTable("info"); DataAdpt.Fill(DataSet1,"info"); bmStud = this.BindingContext[DataSet1, "info"]; // How can I do what I asked for <<
>> conn.Close(); } catch(Exception ex) { MessageBox.Show("There was some error connecting to the database.", "DB Error", MessageBoxButtons.OK, MessageBoxIcon.Error) ; }
Reply
Answers (
2
)
How to execute sql script
Using dates and time in datatable.select