07 2016 档案

摘要:panic: dial tcp 127.0.0.1:3306: connectex: No connection could be made because the target machine actively refused it. 以上报的错是拒绝访问 ,所以开启服务就ok了! 阅读全文
posted @ 2016-07-15 15:45 haojieli 阅读(30371) 评论(3) 推荐(1) 编辑
摘要:【转载原地址】http://www.cnblogs.com/adolfmc/archive/2013/01/22/2872298.html DBCP配置中文版本,来自 apache 官方文档【官方原文地址】http://commons.apache.org/dbcp/configuration.ht 阅读全文
posted @ 2016-07-13 17:06 haojieli 阅读(617) 评论(0) 推荐(0) 编辑
摘要:1、建立数据库名为: go_test_db 2、建表名为:userinfo 字段: uid int username varchar language varchar created varchar 3、对数据库操作 博文到此结束,感谢您的观看,希望对各位读者有所帮助,如果有什么意见以及建议请在评论 阅读全文
posted @ 2016-07-13 10:09 haojieli 阅读(1399) 评论(0) 推荐(0) 编辑
摘要:Go语言在添加第三方MySQL驱动的时候报错: go: missing Git command. See https://golang.org/s/gogetcmd package github.com/Go-SQL-Driver/MySQL: exec: "git": executable fil 阅读全文
posted @ 2016-07-13 09:46 haojieli 阅读(4039) 评论(0) 推荐(0) 编辑
摘要:Java语言跟Go语言的函数比较 Go语言 func funcName(input type1,input type2,......)(output type1,output type2,......){ //do something ..... return value1,value2.....} 阅读全文
posted @ 2016-07-11 10:57 haojieli 阅读(427) 评论(0) 推荐(0) 编辑
摘要:Java语言与Go语言的switch对比 Go语言 switch str { case "yes" : do something ... case "no" do something ... default : do something ...} Java 语言 switch (str){ case 阅读全文
posted @ 2016-07-11 10:54 haojieli 阅读(188) 评论(0) 推荐(0) 编辑