我不知道我在这里做错了什么。我试图在Main Class,SQL命令参数中调用class1.cs,但是我得到了错误。我正在使用我之前的帖子here 如果有人能帮到我,请提前感谢,我将不胜感激。
class.cs
public static OleDbConnection GetConnection()
{
var myCon = new OleDbConnection();
myCon.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:\...Database1.mdb";
return myCon;
}
public static void Insert(string id, string agegroup, string gender, string crimoff, string photoa, string cv)
{
var con = GetConnection();
OleDbCommand cmd = new OleDbCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "INSERT INTO Table1 (ID, AgeGroup, Gender, CriminalOffence, photo, CV )";
cmd.Parameters.AddWithValue("@ID", id);
cmd.Parameters.AddWithValue("@AgeGroup", agegroup);
cmd.Parameters.AddWithValue("@Gender", gender);
cmd.Parameters.AddWithValue("@CriminalOffence", crimoff);
cmd.Parameters.AddWithValue("@photo", photoa);
cmd.Parameters.AddWithValue("@CV", cv);
cmd.Connection = con;
con.Open();
cmd.ExecuteNonQuery();
con.Close();
}
我遇到错误的主表单类...
private void btnInsert_Click(object sender, EventArgs e)
{
Class1 Insert = new Class1();
Insert(textBox1.Text, comboBox1.Text, comboBox2.Text, rBYes.Text, rBNo.Text, // error pointing at Insert line
pictureBox1.Image, richTextBox1.Text);
if (pictureBox1.Image != null)
{
//using MemoryStream:
ms = new MemoryStream();
pictureBox1.Image.Save(ms, ImageFormat.Jpeg);
byte[] photo_aray = new byte[ms.Length];
ms.Position = 0;
ms.Read(photo_aray, 0, photo_aray.Length);
cmd.Parameters.AddWithValue("@photo", photo_aray);
}
答案 0 :(得分:1)
您不需要创建对象来调用静态方法。如果方法在同一名称空间上,您可以调用直接方法,如下所示。
Insert(textBox1.Text, comboBox1.Text, comboBox2.Text, rBYes.Text, rBNo.Text,
pictureBox1.Image, richTextBox1.Text);
但是将您创建的对象的名称更改为Insert
Class1 Insert = new Class1(); // remove this line
如果您的方法Insert
写在Class1
内,那么您可以按以下方式调用
Class1.Insert(textBox1.Text, comboBox1.Text, comboBox2.Text, rBYes.Text, rBNo.Text,
pictureBox1.Image, richTextBox1.Text);
答案 1 :(得分:0)
答案 2 :(得分:0)
这是因为您在尝试调用Insert函数之前立即创建了一个名为Insert的变量。编译器正在查看变量并尝试将其用作函数 - 在这种情况下无法完成。
你实际上并不需要像其他海报所说的那样创建Class1的实例 - 因为Insert函数是静态的。