上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 60 下一页
摘要: 查询是否锁表select oid from pg_class where relname='可能被锁的表';select pid from pg_locks where relation='上面查出的oid' order by pid asc; 如果查询到了结果,表示该表被锁 则需要释放锁定(htt 阅读全文
posted @ 2019-08-10 14:40 水至清明 阅读(437) 评论(0) 推荐(0) 编辑
摘要: public class Single { private volatile static Single single; private Single() { }; public static Single getSingle() { if (single == null) { synchroniz 阅读全文
posted @ 2019-08-10 14:39 水至清明 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 代码合并 TEST-PC@TEST-PC MINGW64 /f/gitwork/test (test-dev)$ git merge --no-ff develop -m "合并代码"合并后冲突 TEST-PC@TEST-PC MINGW64 /f/gitwork/test (test-dev|ME 阅读全文
posted @ 2019-08-10 14:39 水至清明 阅读(5397) 评论(0) 推荐(0) 编辑
摘要: 重要概念自动提交模式对于mysql数据库,默认情况下,数据库处于自动提交模式。每一条语句处于一个单独的事务中,在这条语句执行完毕时,如果执行成功则隐式的提交事务,如果执行失败则隐式的回滚事务。对于正常的事务管理,是一组相关的操作处于一个事务之中,因此必须关闭数据库的自动提交模式,下面是查看方式: 查 阅读全文
posted @ 2019-08-10 14:38 水至清明 阅读(507) 评论(0) 推荐(0) 编辑
摘要: SQL性能优化 Oracle 优化器RBO, CBO RBO 基于规则的优化器 oracle 10g开始,已经丢弃RBO CBO 基于成本的优化器 oracle 8中开始引入的 Oracle 解析器按照从右到左的顺序处理FROM 字句中的表名,FROM 中写在最后的表(基础表, drving tab 阅读全文
posted @ 2019-08-10 14:36 水至清明 阅读(157) 评论(0) 推荐(0) 编辑
摘要: @Overrideprotected void onPause() { super.onPause(); stop();} @Overrideprotected void onResume() { super.onResume(); start();} @Overrideprotected void 阅读全文
posted @ 2019-08-09 19:15 水至清明 阅读(161) 评论(0) 推荐(0) 编辑
摘要: marqueeText = (MarqueeText) this.findViewById(R.id.marqueeText); //设置跑马灯内容marqueeText.setMyContext("我是跑马灯内容"); //setL2r设置方向,默认为从左向右;marqueeText.setL2r 阅读全文
posted @ 2019-08-09 19:15 水至清明 阅读(102) 评论(0) 推荐(0) 编辑
摘要: package com.example.administrator.myapplication; import android.content.Context;import android.graphics.Canvas;import android.util.AttributeSet;import 阅读全文
posted @ 2019-08-09 19:14 水至清明 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 1.我图中采用的模型是使用单模型多材质球,所以只展示了一个身体,单模型但材质直接赋值材质球就好,如果是单模型多材质的需要多创建几个材质球,因为每一部分的发现切图和Albedo图是不一样的。2.这里就不展示Demo了,东西比较简单,感兴趣的可以研究一下这个插件Amplify Shader Editor 阅读全文
posted @ 2019-08-09 19:13 水至清明 阅读(292) 评论(0) 推荐(0) 编辑
摘要: using UnityEngine;using System.Collections; //Add this script to the platform you want to move.//左右移动的平台public class MovingPlatform : MonoBehaviour { 阅读全文
posted @ 2019-08-09 19:12 水至清明 阅读(5103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 60 下一页