The testing code for LX COG 12864R1. You can search the product in T-A-O-B-A-O. #define CS 2 #define RST 3 #define DC 4 #define SCL 21 #define SDA 20 ...
分类:
其他好文 时间:
2021-02-15 12:05:36
阅读次数:
0
>>返回《C#常用设计模式》 1. 简介 2. 示例 2.1. 武器工厂例子 2.2. 数据库访问工厂代码示例 3. 要点 1. 简介 抽象工厂就是将生产实例的工厂和生产的产品进行抽象,使得可以在不同的场景更换工厂,生产出具有抽象产品特点的一系列实际产品。 类图: 抽象工厂: AbstractFac ...
分类:
其他好文 时间:
2021-02-15 11:40:31
阅读次数:
0
Oracle表连接方法有四种: 排序合并连接(Sort Merge Join) 嵌套循环连接(Nested Loops Join) 哈希连接(Hash Join) 笛卡尔积(Cartesian Product) 排序合并连接(Sort Merge Join) 排序合并连接是将连接的两个表使用连接列排 ...
分类:
其他好文 时间:
2021-02-09 12:42:10
阅读次数:
0
官网安装教程: https://walle-web.io/docs/2/installation_docker.html 后续登录所有者账号进行部署: 所有者:owner@walle-web.io \ Walle123 测试在内网192.168.22.15机子搭建walle后,并将内容存放于192. ...
分类:
其他好文 时间:
2021-02-06 11:55:50
阅读次数:
0
1. 直接用limit start, count分页语句, 也是我程序中用的方法: select * from product limit start, count 当起始页较小时,查询没有性能问题,我们分别看下从10, 100, 1000, 10000开始分页的执行时间(每页取20条), 如下: ...
分类:
数据库 时间:
2021-02-01 12:16:04
阅读次数:
0
控制面板里只有一个版本号 安装时采取升级方式,主要关键点有: 1.版本更新;(1.1.1.XXXXX-> 1.1.2.XXXXX) 2.ProductCode变化;(<Product Id="*") 3.UpgradeCode保持不变。(<Upgrade Id="不变") 自定义操作 1.新建C# ...
1. 首先打开Xcode11,然后使用command + shift + n 快捷键创建一个新的工程 选择 Single View App 完成之后点击next 2. 会弹出 Choose options for your new project 的页面 以此填写 Product Name 、 Or ...
分类:
移动开发 时间:
2021-01-29 11:56:11
阅读次数:
0
结论:偏置的方向为曲线方向与拉伸方向的向量叉乘。 在UF_MODL_create_extrusion帮助中有这么一句话:Note that the offset direction is determined by the cross product of the direction vector ...
分类:
其他好文 时间:
2021-01-25 10:41:13
阅读次数:
0
一、复制表中数据 INSERT INTO agent(`agent_id`, `agent_type_id`, `product_no`, `yaml`, `is_anysc`, `status`, `create_time`, `update_time`) SELECT (SELECT UUID( ...
分类:
数据库 时间:
2021-01-25 10:37:33
阅读次数:
0
1. 导出: SQL> exp \'sys/oracle@erp as sysdba \' owner=SCOTT file=/u01/app/oracle/backup/exp_scott.dmp log=/u01/app/oracle/backup/exp_scott.log; 导出SCOTT用 ...
分类:
其他好文 时间:
2021-01-21 10:50:05
阅读次数:
0