上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 89 下一页
摘要: 函数:IDENT_CURRENT('table_name')功能:返回为任何会话和任何作用域中的指定表最后生成的标识值。 阅读全文
posted @ 2021-04-01 13:51 BloggerSb 阅读(435) 评论(0) 推荐(0)
摘要: Excel2003版最大行数是65536行。Excel2007开始的版本最大行数是1048576行。 Excel2003的最大列数是256列,2007以上版本是16384列。 激活a1单元格,按CTRL+SHIFT+右箭头,选择1行所有单元格,输入=COLUMN(),按ctrl+enter填充,鼠标 阅读全文
posted @ 2021-03-17 16:33 BloggerSb 阅读(2182) 评论(0) 推荐(0)
摘要: 源文:https://www.cnblogs.com/GmrBrian/p/6201237.html https://www.cnblogs.com/EminemJK/p/8920364.html 阅读全文
posted @ 2021-03-17 10:51 BloggerSb 阅读(71) 评论(0) 推荐(0)
摘要: C#获取dynamic(动态)实体的属性值 List<student> item= conn.Query<student>($"select * from 表 where id=123 ").ToList(); foreach (System.Reflection.PropertyInfo p in 阅读全文
posted @ 2021-03-10 15:20 BloggerSb 阅读(1087) 评论(0) 推荐(0)
摘要: ++i/--i,我们通常称为"前缀试",i++/i--我们通常称为"后缀试"。一个是操作符位于变量之前,一个是操作符位于变量之后。 区别:前缀试会先执行运算,再生成值;而后缀试会先生成值,在执行运算。 public class AutoInc{ public static void main(Str 阅读全文
posted @ 2021-03-05 13:53 BloggerSb 阅读(133) 评论(0) 推荐(0)
摘要: 在.net core使用GB2312时抛出以下异常System.ArgumentException:“'gb2312' is not a supported encoding name. For information on defining a custom encoding, see the d 阅读全文
posted @ 2021-03-04 16:29 BloggerSb 阅读(778) 评论(0) 推荐(0)
摘要: 若字段定义的类型为datetime,插入为''(空),那么会默认值为1900-01-01 00:00:00.000 解决方法查询的时候过滤下cast(nullif('','') as datetime) select cast('' as datetime) , cast(nullif('','') 阅读全文
posted @ 2021-02-18 17:53 BloggerSb 阅读(644) 评论(0) 推荐(0)
摘要: 使用返回NameValueCollection的System.Web.HttpUtility类的static ParseQueryString方法。 Uri myUri = new Uri("http://www.example.com?param1=good&param2=bad"); strin 阅读全文
posted @ 2021-02-04 17:53 BloggerSb 阅读(560) 评论(0) 推荐(0)
摘要: This issue was due to your database connection or something related to database, Nothing to do with Quartz. Fix:配置数据连接串支持数据库操作 http://www.javaear.com/ 阅读全文
posted @ 2021-01-05 13:29 BloggerSb 阅读(313) 评论(0) 推荐(0)
摘要: 参考: https://docs.microsoft.com/zh-cn/dotnet/standard/class-libraries https://docs.microsoft.com/zh-cn/dotnet/standard/net-standard 阅读全文
posted @ 2020-12-18 15:39 BloggerSb 阅读(147) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 89 下一页