码迷,mamicode.com
首页 >  
搜索关键字:query end    ( 43100个结果
asp中的md5/sha1/sha256算法收集
对于asp这种古董级的技术,这年头想找一些有用的资料已经不容易了,下面是一些常用的加密算法:md5 (将以下代码另存为md5.inc) 31 Then Err.Raise 6 End If If (lValue And m_l2Power(31 - iShiftBits))...
分类:Web程序   时间:2014-05-16 03:19:31    阅读次数:608
MySQL内存参数及调整
1.慢查询日志:slow_launch_time=2 查询大于某个时间的值(单位:s)slow_query_log=on/off 开启关闭慢查询日志slow_query_log_file=/opt/data/host-slow.log 慢查询日志位置2.连接数:max_connections MyS...
分类:数据库   时间:2014-05-15 21:44:08    阅读次数:447
Entity Framework 6.0 源码解读笔记(一)
internal static TResult ExecuteSingle(IEnumerable query, Expression queryRoot) { return GetElementFunction(queryRoot)(query)...
分类:其他好文   时间:2014-05-15 20:54:39    阅读次数:283
MySQL内存参数及调整
1.慢查询日志:slow_launch_time=2查询大于某个时间的值(单位:s)slow_query_log=on/off开启关闭慢查询日志slow_query_log_file=/opt/data/host-slow.log慢查询日志位置2.连接数:max_connectionsMySQL最大连接数back_log当连接数满了后,设置一个值,允许多少个连接进入等待堆..
分类:数据库   时间:2014-05-15 12:44:41    阅读次数:385
Leetcode 线性表 Remove Nth Node From End of List
题意:移除链表的倒数第n个元素 思路: 两个指针p, q, p先走n步,然后p,q一起走,当p走到尾的时候,q->next就是要删除的节点 复杂度: 时间O(n),空间O(1)...
分类:其他好文   时间:2014-05-15 02:53:13    阅读次数:241
对于C11中的正则表达式的使用
Regular Expression Special Characters "."---Any single character(a "wildcard") "["---Begin character class "]"---End character class "{"---Begin count "}"---End count "("---Begin grouping ")"...
分类:其他好文   时间:2014-05-15 01:41:09    阅读次数:548
Delphi XE6记录类型赋值
program Project1;{$APPTYPE CONSOLE}{$R *.res}uses System.SysUtils;TYPE Trec = record Member1, Member2: Integer; end;CONST IntRec: Trec = (Member1: 55;...
分类:其他好文   时间:2014-05-14 23:18:51    阅读次数:554
php访问mysql 封装
dblink = @$func($dbhost,$dbuser,$dbpw) ; if ($halt && !$this->dblink) { $this->halt("无法链接数据库!"); } //设置查询字符集 mysql_query("SET character_set_connection...
分类:数据库   时间:2014-05-14 22:52:20    阅读次数:461
hive执行query语句时提示错误:org.apache.hadoop.ipc.RemoteException: java.io.IOException: java.io.IOException:
hive执行query语句时提示错误:org.apache.hadoop.ipc.RemoteException: java.io.IOException: java.io.IOException:...
分类:编程语言   时间:2014-05-14 21:49:08    阅读次数:378
string wstring
//只扩展为wstring,不考虑编码 std::wstringString2WString(conststd::string&str) { std::wstringwstr(str.length(),L‘‘); std::copy(str.begin(),str.end(),wstr.begin()); returnwstr; } //只拷贝低字节至string中 std::stringWString2String(conststd::wstring&ws..
分类:其他好文   时间:2014-05-14 15:58:11    阅读次数:262
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!