上一页 1 ··· 15 16 17 18 19

2017年11月19日

摘要: Xshell远程连接Linux服务器出错——Could not connect to '114.214.166.5' (port 22): Connection failed. 主要问题可能为两个:(1)sshd服务器没有启动;(2)防火墙问题 步骤一:启动sshd服务器 /etc/init.d/s 阅读全文

posted @ 2017-11-19 20:16 yacbo 阅读(1208) 评论(0) 推荐(0) 编辑


2017年10月31日

摘要: public static void main() { Resource r = new Resource(); Producer pro = new Producer(r); Consumer con = new Consumer(r); Thread t1 = new Thread(pro); Thread t2= new Thread(con); t1.start(); ... 阅读全文

posted @ 2017-10-31 23:00 yacbo 阅读(163) 评论(0) 推荐(0) 编辑


2017年7月1日

摘要: private static string GetMd5String(string msg) { StringBuilder sb = new StringBuilder(); using(MD5 md5 = MD5.Create()) { ... 阅读全文

posted @ 2017-07-01 22:51 yacbo 阅读(189) 评论(0) 推荐(0) 编辑


2016年12月13日

摘要: 1.实现mysql数据库与VS的连接,需要安装两个插件,作者装的是mysql-connector-net-6.9.9.msi 和 mysql-for-visualstudio-1.2.6.msi。 2.数据库转成实体对象有两种实现方式: ①右键项目-->EntityFramework-->Rever 阅读全文

posted @ 2016-12-13 16:03 yacbo 阅读(376) 评论(0) 推荐(0) 编辑


2016年9月30日

摘要: 提示:VS版本2013, Entity Framwork版本5.0.0,Mysql数据库 使用Entity FrameWork的好处就不多说,直接上手如何使用。两种形式:1.将代码映射到数据库实体,使用的是Code First技术。2.将数据库实体转成代码,使用的是Reverse Engineer 阅读全文

posted @ 2016-09-30 11:20 yacbo 阅读(305) 评论(0) 推荐(0) 编辑


上一页 1 ··· 15 16 17 18 19

Copyright © 2024 yacbo
Powered by .NET 8.0 on Kubernetes