此处以MDIN380 Demo更新为例,其他如MDIN325A/MDIN340/MDIN241/MDIN165类似,不再赘述。 更新方法一:串口1. Install LMFlashProgrammer (Download from www.jeansway.cn)2. Connect RS232 c...
分类:
其他好文 时间:
2014-07-22 22:47:53
阅读次数:
680
问题的发现过程: 安装了最新的centos版本后发现居然打不开emacs,然后在终端中输入emacs后还是不能打开,出现了下面的提示: emacs: error while loading shared libraries: libotf.so.0: cannot open shared objec...
分类:
其他好文 时间:
2014-07-22 22:40:13
阅读次数:
190
环境:CentOS 6.2问题描述:MySQL返回错误提示为:Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)项目中需要实现代码导出MySQL数据库中表结构的功能,于是我先单独写这个功能,然后整合上去,单...
分类:
其他好文 时间:
2014-07-22 22:37:13
阅读次数:
220
Failed to load libGL.soerror libGL.so: cannot open shared object file: No such file or directory启动emulator的时候有如上错误,解决方案:64-bit Ubuntu 12.04.$ sudo apt...
分类:
其他好文 时间:
2014-07-22 22:36:35
阅读次数:
223
代码如下:
Tabs
/* Remove margin padding */
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td { margin:0; padding:0; }
/* Default Font...
分类:
其他好文 时间:
2014-07-22 00:16:33
阅读次数:
316
从网上下的jm18.4解压后不能调试,窗口提示 Cannot open annex B ........ 注意要加上命令参数 ,改下工作目录。 改后通过
分类:
其他好文 时间:
2014-07-22 00:15:33
阅读次数:
189
前提: cygwin 里通过 mysql-python模块 连接 windows版本的mysql 通过 socket不能连接 , 改为tcp 如下连接 ?conn?=?MySQLdb.connect(host=‘localhost‘,port=3306,user=‘xxx‘,passwd=‘xxx‘,db=‘xxx‘,charset=‘...
分类:
数据库 时间:
2014-07-22 00:05:36
阅读次数:
271
[oracle@jp ogg]$ ./ggsci
./ggsci: error while loading shared libraries: /u01/app/oracle/ogg/libclntsh.so.11.1: cannot restore segment prot after reloc: Permission denied
关闭selinux,首先修改参数
[root@jp ...
分类:
数据库 时间:
2014-07-21 23:27:50
阅读次数:
294
需要启动MySQL服务。可以采用两种方式启动MySQL:
1.命令行方式。
Win+R,输入cmd并回车,在命令行窗口输入:
net start mysql56
56是安装的mysql的版本。
2.图形方式
在桌面上右键计算机->管理->服务和应用程序->服务,
找到mysql56,右键启动即可。也可以双击mysql56,改成自动启动mysql56。...
分类:
数据库 时间:
2014-07-21 23:14:04
阅读次数:
258
varmysql=require(‘mysql‘);varclient=mysql.createConnection({host:‘112.124.54.74‘,port:3306,user:‘yin‘,password:‘691331‘,database:‘hu‘});client.connect(function(error,results){if(error){console.log(‘ConnectionError:‘+error.message);return;}console.log(‘Conne..
分类:
数据库 时间:
2014-07-21 19:48:22
阅读次数:
263