上一页 1 2 3 4 5 6 ··· 23 下一页
摘要: SqlHelper.cs using System; using System.Configuration;//这个一定要从项目的引用右键把其添加进来 using System.Data; using System.Data.SqlClient; namespace MySelfClassLibra 阅读全文
posted @ 2024-09-15 20:25 techNote 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 新建字典 保存字典到dictionary.frd文件中,是一个文本文件,记事本打开,主要目的是为报表设计时为拖字段,否则一个空表啥也没有,当然也可以楞写,但会痛苦,提供数据源,即提供向空报表中拖字段的来源 内容如下: 有字段 name,sex,age 一句话: 建立--保存--打开 字典的作用是为设 阅读全文
posted @ 2024-09-13 17:06 techNote 阅读(156) 评论(0) 推荐(0) 编辑
摘要: private void btnGenDT_Click(object sender, EventArgs e) { //创建表对象 DataTable dt = new DataTable(); //设置表列 dt.Columns.Add("姓名"); dt.Columns.Add("性别"); d 阅读全文
posted @ 2024-09-12 17:18 techNote 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://knowbot.hikvision.com/webchatbot-pc/#/sharingPath?params=359435&sysNum=1693447044565&type=1 阅读全文
posted @ 2024-09-12 11:45 techNote 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 1、WINDOWS 7或者其他版本的设置方法,请百度!关键是要在防火墙中允许访问1433-1435的TCP端口。 2、关于SQL SERVER不同版本安装到计算上使用了那些端口,系统安装默认是1433-1435,如果是定制端口,请允许定制端口的访问。 3、防火墙是指windows自带的防火墙,如果电 阅读全文
posted @ 2024-09-07 08:48 techNote 阅读(31) 评论(0) 推荐(0) 编辑
摘要: netsh advfirewall firewall add rule name = SQLPort dir = in protocol = tcp action = allow localport = 1433 remoteip = localsubnet profile = DOMAIN 经实验 阅读全文
posted @ 2024-09-05 11:55 techNote 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 在SQL Server中,HAVING子句用于限制GROUP BY子句返回的结果集。它通常与聚合函数一起使用,用于筛选聚合后的数据。 HAVING子句的语法如下: SELECT column_name(s) FROM table_name WHERE condition GROUP BY colum 阅读全文
posted @ 2024-09-03 20:19 techNote 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 创建数据库 Create DataBase students on ( Name='students_data', --数据文件的逻辑名 FileName='D:\students_data.mdf', --数据文件的实际名 Size=10Mb, --数据文件初始大小 FileGrowth=15% 阅读全文
posted @ 2024-09-03 20:09 techNote 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 数据库 C#程序int int32text stringbigint int64binary System.Byte[]bit Booleanchar stringdatetime System.DateTimedecimal System.Decimalfloat System.Doubleima 阅读全文
posted @ 2024-09-03 14:17 techNote 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ////取消转义 //string str = @"a/b/c123"; //bool b=str.StartsWith("a"); //MessageBox.Show(b.ToString()); //str = str.TrimStart('a'); //str = str.TrimEnd('3 阅读全文
posted @ 2024-08-31 21:24 techNote 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 23 下一页