摘要: 以orcl实例下,person表为例: 1.登录mysql: mysql安装路径下,bin目录,打开命令窗口,输入mysql -u用户名 -p密码; 2.显示所有实例,show databases; 3.进入orcl实例,use orcl; 4.显示person表字段信息,desc person; 阅读全文
posted @ 2017-03-10 22:35 earshore 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 一、mysql服务操作 net start mysql //启动mysql服务 net stop mysql //停止mysql服务 mysql -h主机地址 -u用户名 -p用户密码 //进入mysql数据库 quit //退出mysql操作 mysqladmin -u用户名 -p旧密码 pass 阅读全文
posted @ 2017-03-10 22:34 earshore 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Class Bench是我的毕业设计中需要用到的一整套工具,有关介绍参考:官方网站:http://www.arl.wustl.edu/classbench/提到的博客:http://blog.sina.com.cn/s/blog_77d6806c0100re8c.html这应该是介绍的一片会议文章:... 阅读全文
posted @ 2015-02-09 16:25 earshore 阅读(1051) 评论(0) 推荐(0) 编辑
摘要: Intent email = new Intent(android.content.Intent.ACTION_SEND);email.setType("plain/text");String[] emailReciver = new String[] { "earshore@gmail.com" ... 阅读全文
posted @ 2014-12-23 19:02 earshore 阅读(685) 评论(0) 推荐(0) 编辑
摘要: //VibratorVibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE); // 1. 振动为1000毫秒,既1秒 long milliseconds = 1000; vibrator.vibrate(mil... 阅读全文
posted @ 2014-12-22 15:21 earshore 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 根据老师要求,今天必须确定安卓开发的题目了,我写的题目是BrewClock,这是我在网上找到的一个入门App,印象中这个app的是开源的,而且我也一直保留着它的源码,网上有开发是开发该app的全过程。唯一不足是这个app的代码量很少,满打满算也才近400行代码,离老师规定的700+还远得很,我的... 阅读全文
posted @ 2014-12-16 23:18 earshore 阅读(171) 评论(0) 推荐(0) 编辑