2
エラー:エラー - 接続文字列プロパティが初期化されていません(C#データベース)?
The error says:- The ConnectionString Property has not been initialized at system.data.OledbOledConnection.PermissionDemand().
私は、エラーを把握することができません。誰かがそれが何を意味し、どのようにそれを解決するかを説明することができますか?
C#コード:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.OleDb;//microsoft database
namespace AccessLoginApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
try
{
OleDbConnection connection = new OleDbConnection();
connection.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\admin\Documents\Book Database.accdb;
Persist Security Info=False;";
}
catch (Exception ex)
{
MessageBox.Show("Error"+ ex);
}
}
private void button1_Click(object sender, EventArgs e)
{
try{
OleDbConnection connection = new OleDbConnection();
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
command.CommandText = " Insert into Book Name(Book Name,Book Number,Publisher) values('" + bookName.Text + "','" + bookNumber.Text + "','" + publisher.Text + "')";
command.ExecuteNonQuery();
MessageBox.Show("Data Saved");
}
catch (Exception ex)
{
MessageBox.Show("Error" + ex);
}
}
}
}
識別子が必要です.intはキーワードです。それの使い方? – YoMama
@YoMama:整数に変更してください –
助けてくれてありがとうございますが、それでも私にはエラーが発生しています..Error.System.Data.OledbException(0x80040e14):INSERT INTO文の構文エラーです。 – YoMama