2017年3月8日
posted @ 2017-03-08 16:09
z5337
阅读(2)
推荐(0)
2017年3月2日
摘要:
SQLite 的默认时间 转自:http://www.cnblogs.com/pennant/archive/2011/08/11/2134897.html 这个查询的结果是 UTC时间,即 +8h 才和电脑时间相同。 这个查询的结果是 01:02:03 ,也要 +8h 才和电脑时间相同。 这个查询
阅读全文
posted @ 2017-03-02 13:57
z5337
阅读(146)
推荐(0)
摘要:
电脑上安装了最新的 MariaDB 使用方法和 MySql 一样,只是端口号是 3333 下载地址:https://downloads.mariadb.org 忘记密码步骤转自:http://www.cnblogs.com/Richard-xie/p/4205630.html
阅读全文
posted @ 2017-03-02 11:51
z5337
阅读(125)
推荐(0)
2017年2月6日
摘要:
多线程篇: 更多示例可见: http://www.cnblogs.com/z5337/p/4030287.html 以上代码中,BeginInvoke、Invoke、MethodInvoker、EventHandler 可以互换 使用 BeginInvoke 之后,可以执行以下操作: 1. 进行某些
阅读全文
posted @ 2017-02-06 16:13
z5337
阅读(228)
推荐(0)
2016年12月28日
摘要:
部分内容摘自:http://www.jb51.net/article/34476.htm
阅读全文
posted @ 2016-12-28 17:59
z5337
阅读(585)
推荐(0)
2016年9月29日
摘要:
本文转自:http://www.icharm.me/vs2013%E8%87%AA%E5%B8%A6%E7%9A%84%E6%95%B0%E6%8D%AE%E5%BA%93sql-server-express-localdb%E4%BD%BF%E7%94%A8%E4%BB%8B%E7%BB%8D.h
阅读全文
posted @ 2016-09-29 08:53
z5337
阅读(21128)
推荐(0)
2016年9月21日
摘要:
using System; using System.IO; using System.Security.Cryptography; using System.Text; public class CryptographyHelper { private static string sKey = "12345679"; private static string sIV = "...
阅读全文
posted @ 2016-09-21 15:17
z5337
阅读(221)
推荐(0)
2016年9月19日
posted @ 2016-09-19 14:38
z5337
阅读(4)
推荐(0)
2016年8月19日
摘要:
-- 转换字符串为日期格式 to_date('2014-05-17 14:41:59','yyyy-mm-dd hh24:mi:ss') -- 查看当前服务器时间 select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual 参考:http://
阅读全文
posted @ 2016-08-19 15:49
z5337
阅读(189)
推荐(0)
2016年7月28日
摘要:
ASP.NET WebSocket & Comet Ajax Library (Reverse Ajax - Server Push) ASP.NET WebSocket & Comet Ajax Library (Reverse Ajax - Server Push) 项目链接:http://po
阅读全文
posted @ 2016-07-28 08:24
z5337
阅读(157)
推荐(0)