System.InvalidOperationException: 'ConnectionString özelliği başlatılmamış.' hatası alıyorum ne yapmam lazım?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;
namespace Ogrenci_Takip_Sistemi
{
public partial class giris : Form
{
public giris()
{
InitializeComponent();
}
OleDbConnection con = new OleDbConnection("Provider=Microsoft.ACE.Oledb.12.0;Data Source=ogrencitkp.accdb");
OleDbCommand cmd;
OleDbDataReader dr;
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
string ad = textBox1.Text;
string sifre = textBox2.Text;
con = new OleDbConnection();
cmd = new OleDbCommand();
con.Open();
cmd.Connection = con;
cmd.CommandText = "SELECT * FROM Login WHERE kul_adi='" + textBox1.Text + "' AND sifre='" + textBox2.Text + "'";
dr = cmd.ExecuteReader();
if (dr.Read())
{
anasayfa anasayfa= new anasayfa();
anasayfa.Show();
}
else
{
MessageBox.Show("Kullanıcı adı ya da şifre yanlış");
}
con.Close();
}}}