private void btnBackup_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(connectionString))
            {
                MessageBox.Show("Chưa có thông tin cơ sở dữ liệu sao lưu!", "Warning", MessageBoxButtons.OK,
                                MessageBoxIcon.Warning);
                return;
            }

            if (string.IsNullOrEmpty(txtSavePath.Text))
            {
                MessageBox.Show("Chưa có chọn thư mục lưu trữ cơ sở dữ liệu sao lưu!", "Warning", MessageBoxButtons.OK,
                                MessageBoxIcon.Warning);
                return;
            }

            SqlCopier sqlCopier = new SqlCopier(connectionString);
            if(optBackupAll.Checked)
            {
                var ret = sqlCopier.RunStoreProc("BackupFullDatabase", new object[] { "@fileSaved", txtSavePath.Text });
                if(ret!=null)
                {
                    MessageBox.Show("Sao lưu dữ liệu thành công!", "Info", MessageBoxButtons.OK,
                                MessageBoxIcon.Information);
                }
            }
            else
            {
                var ret = sqlCopier.RunStoreProc("BackupDiferentialDatabase", new object[] { "@fileSaved", txtSavePath.Text });
                if (ret != null)
                {
                    MessageBox.Show("Sao lưu dữ liệu thành công!", "Info", MessageBoxButtons.OK,
                                MessageBoxIcon.Information);
                }
            }
        }