代码拉取完成,页面将自动刷新
#include "addcol.h"
#include "ui_addcol.h"
AddCol::AddCol(QWidget *parent) :
QWidget(parent),
ui(new Ui::AddCol)
{
ui->setupUi(this);
}
AddCol::~AddCol()
{
delete ui;
}
void AddCol::get_table_name(QString s) {
table_name = s;
}
void AddCol::on_finished_btn_clicked()
{
if (ui->col_name_edit->text() == "") {
QMessageBox::warning(this, "警告", "请填写你需要添加的列名!");
return;
}
if (ui->datatype->currentText() == "VARCHAR") {
if (ui->varchar_n->text() == "") {
QMessageBox::warning(this, "警告", "请输入你varchar的n值!");
return;
} else {
col_type = ui->datatype->currentText() + "(" + ui->varchar_n->text() + ")";
}
} else {
col_type = ui->datatype->currentText();
}
col_name = ui->col_name_edit->text();
QString stm = "alter table " + table_name + " add " + col_name + " " + col_type + ";";
emit(send_stm_alter(stm));
this->close();
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。