码迷,mamicode.com
首页 >  
搜索关键字:string null    ( 125062个结果
定义数据完整性
主键约束(Primary Key Constraints):不能在允许NULL值的列上定义主键约束。 ALTER TABLE dbo.test ADD CONSTRAINT PK_test PRIMARY KEY(testid);唯一约束(Unique Constraints):唯一约束用来保...
分类:其他好文   时间:2014-07-22 23:09:33    阅读次数:347
C#String与string大小写的区别
string是c#中的类 String是.net Framework的类用string需要通过再次编译,所以直接用String速度会更快···string是关键字,而String不是···string是String的别名。string是c#中的类,String是.net Framework的类(在c...
分类:其他好文   时间:2014-07-22 23:09:16    阅读次数:244
求时间差
time_t first, second;first = time(NULL);// 你的程序 ...............second = time(NULL);printf("The difference is: %f seconds\n",difftime(se...
分类:其他好文   时间:2014-07-22 23:08:54    阅读次数:216
Leetcode | Work Break
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.For e...
分类:其他好文   时间:2014-07-22 23:08:32    阅读次数:383
记录android的bug
java.lang.IllegalStateException: Target host must not be null, or set in parameters. 原因:连接地址不完整,必须加上"http://"。========================================...
分类:移动开发   时间:2014-07-22 23:08:12    阅读次数:415
占位符
目前只会一种比如:String str="我是{0},我来自{1}";str=str.replace("{0}","bruceLee");str=str.replcae("{1}","chn");syso(str);
分类:其他好文   时间:2014-07-22 23:07:54    阅读次数:216
DNN模块开发之利器篇:七种武器
我们在进行DNN模块开发时经常需要调用Dotnetnuke.dll中的方法函数,模块开发用到DNN的方法函数会让你的开发更加得心应手,下面我们就来介绍一下。1) PortalModuleBase所属命名空间:DotNetNuke.Entities.Modules这是一个开发DNN模块所必须继承的基类...
分类:其他好文   时间:2014-05-01 16:33:35    阅读次数:431
php中一些安全性防止问题建议
只要我们作好了各类操作就可在基本防止一些朋友利用网站本身的漏洞进行网站操作了,很多在php中都有的如XSS用 htmlentities()预防XSS攻击还有sql注入可以用mysql_real_escape_string操作等。PHP包括其他任何网络编程语言的安全性,具体表现在本地安全性和远程安全性...
分类:Web程序   时间:2014-05-01 16:32:57    阅读次数:436
hdu 1211
这题就是 要你找出一个ASCII 的值x使得 : x^e%n==num(当前输入的数,e条件已给出)zsd:1: ASCII0-255可以枚举2: =a^11 11=1011int pow2( int a, int b ){ int r = 1, base = a; while( b...
分类:其他好文   时间:2014-05-01 16:22:43    阅读次数:326
一个C#的XML数据库访问类
原文地址:http://hankjin.blog.163.com/blog/static/33731937200942915452244/程序中不可避免的要用到配置文件或数据,对于数据量比较小的程序,部署数据库花费的时间就显得浪费了,因此用XML来存储不妨为一个很好的办法,而且结合C#的DataSe...
分类:数据库   时间:2014-05-01 16:20:41    阅读次数:328
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!