会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
第一序列
博客园
首页
新随笔
联系
订阅
管理
1
2
3
4
下一页
2025年1月8日
记录一下uniapp vue3 mqtt app端的接入
摘要: 原生微信小程序 MQTT.js 可用版本有 v4.2.1、v4.2.0、v4.1.0 和 v2.18.9 npm install mqtt@4.2.1 || yarn add mqtt@4.2.1 使用 uniapp 框架搭建微信小程序 MQTT.js 可用版本有 v4.1.0 和 v2.18.9
阅读全文
posted @ 2025-01-08 11:10 第一序列
阅读(903)
评论(0)
推荐(1)
2023年4月24日
mysql 生成修改列编码的语句
摘要: SELECT CONCAT('ALTER TABLE ', TABLE_SCHEMA,'.',TABLE_NAME, ' MODIFY COLUMN `',COLUMN_NAME,'` ',COLUMN_TYPE,' CHARACTER SET utf8mb4 COLLATE utf8mb4_gen
阅读全文
posted @ 2023-04-24 16:54 第一序列
阅读(16)
评论(0)
推荐(0)
2022年6月28日
.netcore 打包
摘要: 单体打包: 包含框架 dotnet publish -r win-x64 -c Release -o ./bin/single /p:PublishSingleFile=true 消减文件 dotnet publish -r win-x64 -c Release -o ./bin/single /p
阅读全文
posted @ 2022-06-28 08:39 第一序列
阅读(121)
评论(0)
推荐(0)
2022年6月24日
Orleans学习
摘要: grains重入: 类加标记:[Reentrant] 接口方法加标记:[AlwaysInterleave]
阅读全文
posted @ 2022-06-24 10:04 第一序列
阅读(65)
评论(0)
推荐(0)
2022年6月20日
c#特性
摘要: //不可修改的记录类 public record Person(string name); //可修改的记录类 public record struct Person(string name); //带内属性的 public record struct Person(string name) { p
阅读全文
posted @ 2022-06-20 19:16 第一序列
阅读(25)
评论(0)
推荐(0)
2021年8月2日
连接mysql open时提示Guid should contain 32 digits with 4 dashes
摘要: 可以在在连接字符串中添加 OldGuids=true; 尝试解决一下:完整连接: server=localhost;Database=DbName;Uid=root;Pwd=password;charset=utf8mb4;Character Set=utf8mb4;OldGuids=true
阅读全文
posted @ 2021-08-02 12:22 第一序列
阅读(677)
评论(0)
推荐(0)
2020年6月24日
.netcore 部署到iis
摘要: 1.安装.netcore runtime https://dotnet.microsoft.com/download/dotnet-core 注意是Hosting Bundle版本 2.重启服务器 3.防止System.UnauthorizedAccessException,所以设置iis的应用程序
阅读全文
posted @ 2020-06-24 10:21 第一序列
阅读(201)
评论(0)
推荐(0)
2020年4月28日
ef
摘要: 监听EF执行的sql语句及状态 1、监听EF执行sql的方式 db.Database.Log += c => Console.WriteLine($"sql:{c}"); SQL Server Profiler public JDDbContext() : base("name=JDDbContex
阅读全文
posted @ 2020-04-28 11:45 第一序列
阅读(188)
评论(0)
推荐(0)
2020年3月25日
ios 浏览器内容较少时隐藏地址栏
摘要: window.onload = function() { scroll(); } function scroll() { if(document.documentElement.scrollHeight <= document.documentElement.clientHeight) { body
阅读全文
posted @ 2020-03-25 23:19 第一序列
阅读(261)
评论(0)
推荐(0)
2020年3月24日
winform 打印图片填充整页
摘要: PrintPreviewDialog dialog = new PrintPreviewDialog(); dialog.Document = print_express; //print_express是PrintDocument控件 print_express.DefaultPageSettin
阅读全文
posted @ 2020-03-24 23:11 第一序列
阅读(621)
评论(0)
推荐(0)
1
2
3
4
下一页
公告