", MessageBoxButtons.OK, MessageBoxIcon.Error); return;}
mydb = new sqliteclass ();
sSql = @ "insert into doctor (name) values ​​('" + name + "');";
// Перевірка роботи
if (mydb.iExecuteNonQuery (sPath, sSql, 1) == 0)
{
Text = "Помилка запису!";
mydb = null;
return;
} else {
Text = "Доктор доданий в базу!";
textBox1.Text = "";
listBox1.Items.Add (name.ToString (). Trim ());
}
mydb = null;
return;
}
}
}
Зміст файлу
{
public partial class Form4: Form
{
private sqliteclass mydb = null;
private string sCurDir = string.Empty;
private string sPath = string.Empty;
private string sSql = string.Empty;
public Form4 ()
{
InitializeComponent ();
}
private void Form4_Load (object sender, EventArgs e)
{
sPath = Path.Combine (Application.StartupPath, "mybd.db");
Text = "Процедури";
mydb = new sqliteclass ();
sSql = "select * from proc";
DataRow [] datarows = mydb.drExecute (sPath, sSql);
if (datarows == null)
{
Text = "Помилка читання!";
mydb = null;
return;
}
foreach (DataRow dr in datarows)
{
listBox1.Items.Add (dr ["title"]. ToString ());
}
}
private void button1_Click (object sender, EventArgs e)// видалити
{
try {
string it = listBox1.SelectedItem.ToString (). Trim ();
mydb = new sqliteclass ();
sSql = "DELETE FROM proc WHERE title LIKE '%" + it + "%'";
if (mydb.iExecuteNonQuery (sPath, sSql, 1) == 0)
{
Text = "Помилка видалення!";
mydb = null;
return;
}
mydb = null;
Text = "Запис видалено з БД!";
listBox1.Items.Clear...