1、将数据库中某列强制修改为大小写识别
比如想修改表:tb_TestTable400中的userPWD14列
ALTER TABLE tb_TestTable400
ALTER COLUMN userPWD14 nvarchar(128) COLLATE Chinese_PRC_CS_AS2、在sql语句中指定
不区分大小写:
select * from tb_TestTable400...
分类:
数据库 时间:
2015-05-06 19:47:20
阅读次数:
204
结论:可以
验证demo如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms...
使用adrci的ips打包一个incident...
分类:
数据库 时间:
2015-05-06 19:44:20
阅读次数:
399
在windows xp下实现进程网络流量限速...
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.
get(key) - Get the value (will always be positive) of the key if ...
分类:
系统相关 时间:
2015-05-06 19:46:44
阅读次数:
258
HDU 3853 LOOPS(概率dp 求期望)...
分类:
其他好文 时间:
2015-05-06 19:44:48
阅读次数:
116
此将主要将leetcode中sort专题的解答都放在这里,后续会慢慢加入
一:leetcode179 Largest Number
题目:
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 3...
分类:
其他好文 时间:
2015-05-06 19:46:06
阅读次数:
136
1.调用Environment.getExternalStorageState()判断手机上是否插入了SD卡,并且应用程序具有读写SD卡的权限。
Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)
返回值为true代表该应用程序具有读写SD卡的权限。
2.调用Environment的g...
分类:
移动开发 时间:
2015-05-06 19:45:06
阅读次数:
126
说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。但是对于双核的cpu,在cpuinfo中会看到两个cpu。常常会让人误以为是两个单核的cpu。
原文地址: http://www.hpboys.com/659.html
一、linux CPU大小
[root@idc ~]# cat /proc/cpuinfo |gr...
分类:
系统相关 时间:
2015-05-06 19:44:29
阅读次数:
138
#include
#include
#include
using namespace std;
const int INF=1<<30;
int a[105][105];
int b[105];
int dp[105];
int maxx,ans;
int main()
{
int n;
while(scanf("%d",&n)==1)
{
for(in...
分类:
其他好文 时间:
2015-05-06 19:44:36
阅读次数:
126
上一节分析到,Backbone.Events.on方法的 return this; 来看一张图: 整个on方法,我把分成了2个部分,正常传参下褐红色框框内的基本语法已经分析完了。但是我们想想是不是缺了什么?正常传参之外触发这段if语句虽然分析完基础语法,但是还没分析它为何这样写? 好,我们先...
分类:
Web程序 时间:
2015-05-06 19:42:52
阅读次数:
222
Microsoft Access 数据类型数据类型描述存储Text用于文本或文本与数字的组合。最多 255 个字符。MemoMemo 用于更大数量的文本。最多存储 65,536 个字符。注释:无法对 memo 字段进行排序。不过它们是可搜索的。Byte允许 0 到 255 的数字。1 字节Integ...
分类:
数据库 时间:
2015-05-06 19:43:37
阅读次数:
152
HDU 2460 Network题目链接题意:给定一个无向图,问每次增加一条边,问个图中还剩多少桥思路:先双连通缩点,然后形成一棵树,每次增加一条边,相当于询问这两点路径上有多少条边,这个用树链剖分+线段树处理代码:#include #include #include #include using ...
分类:
Web程序 时间:
2015-05-06 19:42:37
阅读次数:
176
百度地图 自定义结果面板+分页+图层标注(标注点+搜索)示例一: 示例二: 52个市场...
分类:
其他好文 时间:
2015-05-06 19:44:09
阅读次数:
153