进mysqlserver例如下列:Enter password: ******Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 810Server version: 5.6.10 M...
分类:
数据库 时间:
2015-09-30 20:54:15
阅读次数:
296
启动模拟器的时候弹出窗体:它实在询问你是否显示logcat视图以便显示此工作空间中的程序信息。因为如何程序错误,可以从logcat中看到错误的原因,建议选择yes。单击确定,你会发现多了一个Logcat窗体。
分类:
移动开发 时间:
2015-09-30 16:33:12
阅读次数:
201
DDMS 的全称是Dalvik Debug Monitor Service,是 Android 开发环境中的Dalvik虚拟机调试监控服务。 它为我们提供例如:为测试设备截屏,针对特定的进程查看正在运行的线程以及堆信息、Logcat、广播状态信息、模拟电话呼叫、接收SMS、虚拟地理坐标等等。 一,切换DDMS视图 在左侧的Devices中,可以看到正在运...
分类:
移动开发 时间:
2015-09-27 20:16:28
阅读次数:
234
登陆数据库 root@bj-idc-testdb-001 ~]#mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.38 MySQL Community Server (GPL) by Remi
Copyr...
分类:
数据库 时间:
2015-09-21 00:12:19
阅读次数:
344
Having the Result Set of a Stored Proc Sent to You by RSS Feed.by JBrooks 14. 十二月 2010 12:44I wanted to monitor one of my system from my desk top and ...
分类:
其他好文 时间:
2015-09-20 13:08:46
阅读次数:
246
MySQL中查看自带的SQL模式Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9450
Server version: 5.6.24-log MySQL Community Server (GPL)
Copyright (c) 2000,...
分类:
数据库 时间:
2015-09-19 16:52:53
阅读次数:
248
紧接上一篇,继续我的dubbo的学习之旅1、下载监控中心dubbo服务安装包下载地址:http://code.alibabatech.com/mvn/releases/com/alibaba/dubbo-monitor-simple/2.4.1/dubbo-monitor-simple-2.4.1-...
分类:
其他好文 时间:
2015-09-18 20:13:23
阅读次数:
290
Description:During the kindergarten days, flymouse was the monitor of his class. Occasionally the head-teacher brought the kids of flymouse’s class a ...
分类:
其他好文 时间:
2015-09-18 13:32:39
阅读次数:
143
MySQL查看所有可用的字符集Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6190
Server version: 5.6.24-log MySQL Community Server (GPL)
Copyright (c) 2000, ...
分类:
数据库 时间:
2015-09-18 07:05:38
阅读次数:
181
Monitor对象 1.Monitor.Enter(object)方法是获取锁,Monitor.Exit(object)方法是释放锁,这就是Monitor最常用的两个方法,当然在使用过程中为了避免获取锁之后因为异常,致锁无法释放,所以需要在try{} catch(){}之后的finally{}结构....