上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页
摘要: /// /// 素数帮忙类 /// 本类是从.net源码 类 internal static class HashHelpers 类里抽取相应的代码 /// https://referencesource.microsoft.com/#mscorlib/system/collections/hashtable.cs,e8668bf19da49963 /// Ha... 阅读全文
posted @ 2017-04-05 15:40 zslm___ 阅读(348) 评论(0) 推荐(0)
摘要: /// /// DateTimeHelper /// public static class DateTimeHelper { /// /// Unix时间起始时间 /// public static readonly DateTime StarTime = new DateTime(1970... 阅读全文
posted @ 2017-04-05 15:19 zslm___ 阅读(1775) 评论(0) 推荐(0)
摘要: using System; using System.IO; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Xml.Serialization; /// /// Xml序列化 /// public static class XmlSeri... 阅读全文
posted @ 2017-04-05 14:40 zslm___ 阅读(1573) 评论(0) 推荐(0)
摘要: /// /// 字典串帮忙类 /// public static class StringHelper { /// /// 以默认编码返回字符串所对应的字节数组 /// /// 字符串 /// 字节数组 public static byte[] GetBytes... 阅读全文
posted @ 2017-04-05 13:26 zslm___ 阅读(1070) 评论(0) 推荐(0)
摘要: public static class IntHelper { /// /// 转换为2进制字符串 /// /// /// public static string To2Base(this int num) { return Convert.... 阅读全文
posted @ 2017-04-05 13:25 zslm___ 阅读(566) 评论(0) 推荐(0)
摘要: /// /// 从M进制转换为N进制 /// internal class MBase2NBase { /// /// M进制值字符串 /// private string MValue = "123"; /// /// 除法商 //... 阅读全文
posted @ 2017-04-05 13:24 zslm___ 阅读(736) 评论(0) 推荐(0)
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace G2.Utils { /// /// 字典帮助类 /// ... 阅读全文
posted @ 2017-04-05 10:09 zslm___ 阅读(1286) 评论(0) 推荐(0)
摘要: 1.有用的链接 postgresql 常用小函数 Postgresql数据库的一些字符串操作函数 PostgreSQL function里面调用function PostgreSQL学习手册(函数和操作符<二>) PostgreSQL的存储过程简单入门 2.建立块环境(执行环境) 如 3. 建立存储 阅读全文
posted @ 2017-04-01 16:31 zslm___ 阅读(2176) 评论(0) 推荐(0)
摘要: public class App { public static void main( String[] args ) { //JDBC驱动 String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; String dbURL = "jdbc:sqlser... 阅读全文
posted @ 2017-03-31 14:27 zslm___ 阅读(339) 评论(0) 推荐(0)
摘要: 1.引入maven包 和 导入 sqljdbc包 sqljdbc官方地址:https://www.microsoft.com/zh-cn/download/details.aspx?id=11774 下载地址: https://download.microsoft.com/download/A/F/ 阅读全文
posted @ 2017-03-31 09:49 zslm___ 阅读(296) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页