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
manish pandey
NA
23
5.4k
Connection Establishment Problem
Jun 22 2013 10:33 AM
Hello ,
Please help me ...
i am getting run time exception in this code. (Could not find installable ISAM.)
i m just trying to establish connection with my access database.
private void button1_Click(object sender, RoutedEventArgs e)
{
//MessageBox.Show(textBox1.Text.ToString());
OleDbConnection con = new OleDbConnection("Provider = Microsoft.Jet.OLEDB.4.0; Data Source = E:\\Access\\test.mdb; Persist Security =false;");
OleDbCommand cmd = new OleDbCommand("select * from student", con);
con.Open();
OleDbDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
MessageBox.Show(dr["age"].ToString());
}
con.Close();
}
Please help me in this.
Reply
Answers (
1
)
WPF graphics issue - floodfill problem
Different types of Brushes in WPF?