上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 44 下一页
摘要: 新建一个CommandInfo.cs 类 using System; using System.Collections.Generic; using System.Data.Common; using System.Linq; using System.Text; using System.Thre 阅读全文
posted @ 2024-05-21 15:00 龙卷风吹毁停车场 阅读(53) 评论(0) 推荐(0)
摘要: private void buttonDelete_Click(object sender, EventArgs e) { DialogResult = MessageBox.Show("确定删除这些数据么?", "提示", MessageBoxButtons.YesNo); List<int> l 阅读全文
posted @ 2024-05-20 15:03 龙卷风吹毁停车场 阅读(50) 评论(0) 推荐(0)
摘要: 在sql-server设计表格中直接修改无效,目前并不知道为撒不行, 但是可以使用命令的方式修改 alter table 表名 alter column 列名 要修改成的数据类型 列: alter table ClassInfo alter column ClassName varchar(50) 阅读全文
posted @ 2024-05-18 13:46 龙卷风吹毁停车场 阅读(92) 评论(0) 推荐(0)
摘要: using System.Data; using System.Data.SqlClient; class Pranson() { public static void Main() { //创建数据库链接对象 string connString = "Server=.;DataBase=Cours 阅读全文
posted @ 2024-04-23 13:55 龙卷风吹毁停车场 阅读(120) 评论(0) 推荐(0)
摘要: use master go if exists(select * from sysdatabases where name = 'CourseManageDB') --查询是否存在这个库 drop database CourseManageDB --删除数据库(不可恢复) go --表示结束 cre 阅读全文
posted @ 2024-04-23 13:08 龙卷风吹毁停车场 阅读(74) 评论(0) 推荐(0)
摘要: https://visualstudio.microsoft.com/zh-hans/https://visualstudio.microsoft.com/zh-hans/downloads/ 阅读全文
posted @ 2024-03-22 23:14 龙卷风吹毁停车场 阅读(83) 评论(0) 推荐(0)
摘要: <template> <el-upload :action="uploadUrl" :on-success="handleSuccess" multiple> <el-button size="small" type="primary">点击上传</el-button> </el-upload> < 阅读全文
posted @ 2024-03-22 13:17 龙卷风吹毁停车场 阅读(1386) 评论(0) 推荐(0)
摘要: option={ series:[ { barWidth: 20, name: "预警", type: "bar",//柱状图 stack: "Search Engine", data: [120, 132, 101, 134, 90, 230, 210], color: '#435188', ba 阅读全文
posted @ 2024-03-20 13:42 龙卷风吹毁停车场 阅读(253) 评论(0) 推荐(0)
摘要: option={ yAxis: { splitArea: { show: true // 这里设置为false即可去掉Y轴的背景色 }, type: 'value' }, } 阅读全文
posted @ 2024-03-15 14:22 龙卷风吹毁停车场 阅读(235) 评论(0) 推荐(0)
摘要: option = { yAxis: { axisTick: { show: false }, axisLine:{ show: false }, type: 'value' } }; 阅读全文
posted @ 2024-03-15 14:15 龙卷风吹毁停车场 阅读(492) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 44 下一页