V1.77 edit at date 2021-09-30
1.新增 alter table db_battinf.tb_battinf ADD COLUMN tmp_id int(11)
DEFAULT 0 字段
| | |
| | | sql.sqlMysqlExecute("ALTER TABLE " + Sql_Mysql.BattInf_Table
|
| | | + " ADD COLUMN `buscouple_state` int(11) NOT NULL DEFAULT '0' COMMENT '母联状态:0:无母联;1:有母联';");
|
| | | }
|
| | | |
| | | //添加tmp_id |
| | | res = sql.sqlMysqlQuery("SELECT * FROM information_schema.columns" |
| | | + " WHERE table_schema='db_battinf'" |
| | | + " AND table_name='tb_battinf'" |
| | | + " AND column_name='tmp_id'"); |
| | | if(false == res.next()) { |
| | | sql.sqlMysqlExecute("ALTER TABLE " + Sql_Mysql.BattInf_Table |
| | | + " ADD COLUMN `tmp_id` int(11) DEFAULT '0';"); |
| | | } |
| | | } catch (SQLException e) {
|
| | | e.printStackTrace();
|
| | | } finally {
|
| | |
| | | 1.新增`db_app_sys`库新建表`tb_application`,`tb_application_config`,`tb_dashboard_chart_type`, |
| | | `tb_dashboard_module`,`tb_dashboard_module_chart` |
| | | |
| | | V1.77 edit at date 2021-09-30 |
| | | 1.新增 alter table db_battinf.tb_battinf ADD COLUMN tmp_id int(11) DEFAULT 0 字段 |
| | | |
| | |
| | | /**************************************************************************/ |
| | | /**************************************************************************/ |
| | | public final static boolean app_debug = false; |
| | | public final static float m_VersionNum = (float) 1.76; |
| | | public final static float m_VersionNum = (float) 1.77; |
| | | public final static String m_Version = "Welcome To Use BTS DB BUILDER V" + m_VersionNum + " RC_20180908"; |
| | | /**************************************************************************/ |
| | | /**************************************************************************/ |