With this project that I did in my spare time in high school, I wanted to develop a project that my high school teacher could use as a resource for new students. Since it is the first project, there may be mistakes and omissions.
Previously MS-SQL was used, but I had to switch to MySQL.
- MySql.Data.dll
- webcam_capture.dll
OFB.Data/Sql/SqlBaglanti.cs
#region MYSQL_Local
using (var baglanti = new MySqlConnection("SERVER=127.0.0.1;PORT=3306;DATABASE=ofb;UID=root;PWD=mysql;"))
{
baglanti.Open();
return baglanti;
}
#endregion