mysql引擎 create table t_mysql ( id Int32, name String, ) engine = MySQL('127.0.0.1:3306', 'test', 't', 'root', '123456'); mysql进行ddl: alter table t mod ...
分类:
其他好文 时间:
2021-06-25 16:44:37
阅读次数:
0
web端:socket.io.js 小程序端:weapp.socket.io.js const params = { query:‘’,//连接参数 path: '/socket.io', 'force new connection':true //新开一个websocket连接 } const w ...
分类:
其他好文 时间:
2021-06-25 16:30:53
阅读次数:
0
1.@Transactional修饰的方法为非public方法,这个时候@Transactional会实现。失败的原理是:@Transactional是基于动态代理来实现的,非public的方法,他@Transactional的动态代理对象信息为空,所以不能回滚。 2.在类内部没有添加@Transa ...
分类:
其他好文 时间:
2021-06-24 18:13:10
阅读次数:
0
dataZoom=[ //区域缩放 { id: 'dataZoomX', show:true, //是否显示 组件。如果设置为 false,不会显示,但是数据过滤的功能还存在。 backgroundColor:"rgba(47,69,84,0)", //组件的背景颜色 type: 'slider', ...
分类:
其他好文 时间:
2021-06-24 18:12:17
阅读次数:
0
1.当extends app 时,可以引入变量,而使用main函数不能引入 extends app main 函数 2. extends app 会延迟加载,使用main函数更加稳定 等区别网络自行搜索 其他不同待补充 ...
分类:
移动开发 时间:
2021-06-24 18:03:37
阅读次数:
0
data() { return { krpano:null //存krpano变量 } }, // 初始化全景 embedpanoInit(name) { if (document.getElementById('krpanoObject')) { document.getElementById(' ...
分类:
其他好文 时间:
2021-06-24 18:00:55
阅读次数:
0
*& * *& Report ZSDRP122 *& * *&data of MRB query create by Bruce King 20210607 *& * REPORT ZSDRP122. TABLES:ZTSD042. SELECT-OPTIONS: S_MRB FOR ZTSD042 ...
分类:
其他好文 时间:
2021-06-24 17:32:28
阅读次数:
0
PreparedStatement针对不同表的通用查询操作 public class PreparedStatementQueryTest { @Test public void testGetForList(){ String sql="select id,name,email from cust ...
分类:
其他好文 时间:
2021-06-23 17:15:36
阅读次数:
0
修改字符串的大小写: 首字母大写 >>> name = "gao ziqiang" >>> print(name.title()) Gao Ziqiang 全部大写或者全部小写 >>> print(name.upper()) GAO ZIQIANG >>> print(name.lower()) g ...
分类:
编程语言 时间:
2021-06-23 16:52:40
阅读次数:
0
case: decode: decode中的括号相当于case的end; ...
分类:
其他好文 时间:
2021-06-23 16:50:49
阅读次数:
0