();
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 ());
}
return;
}
catch
{
MessageBox.Show ("Ви не обрали рядок для видалення", "Помилка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void button2_Click (object sender, EventArgs e)// Додати
{
string name = Convert.ToString (textBox1.Text.Trim ());
if (name == "") {MessageBox.Show ("Введіть назву процедури", "Помилка", MessageBoxButtons.OK, MessageBoxIcon.Error); return;}
mydb = new sqliteclass ();
sSql = @ "insert into proc (title) 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 Form5: Form
{
private sqliteclass mydb = null;
private string sCurDir = string.Empty;
private string sPath = string.Empty;
private string sSql = string.Empty;
public Form5 ()
{
InitializeComponent ();
}
private void Form5_Load (object sender, EventArgs e)
{
sPath = Path.Combine (Application.StartupPath, "mybd.db");
Text = "Ліки";
mydb = new sqliteclass ();
sSql = "select * from medicine";
DataRow []...