mysql ไม่ได้ใช้ SqlClient หรอกนะ เเล้วไช้อะไรหลอครับ ผมลอง Using MySql.Data.MySqlClient; โปรเเกรมก็ไม่รู้จัก ผมไช้ vs 2008 เขียนบน app เเล้วบางเว็บบอกไห้ add reference ผมหาดูเเล้วก็หาไม่เจอที่ไห้เเอส MySql.Data อะครับ งงไปหมดเเละ connect ไม่ได้สักกะที ช่วยบอกทีนะครับCode (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.SqlClient;
namespace project_opencv
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string ConnectionString = "SERVER=localhost;" +
"DATABASE=db_image_processing;" +
"UID=root;" +
"PASSWORD=1111";
SqlConnection connection = new SqlConnection(ConnectionString);
connection.Open();
}
}
}