|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。函数常常见到cint和clng的溢出堕落,假如有检测函数就不会出这个成绩,上面这两个函数是应伴侣请求写的,看一下吧</P><P>检拆字符串是不是是整数
functionIs_Int(a_str)
ifnotisnumeric(a_str)orlen(str)>5then
Is_Int=false
exitfunction
elseiflen(str)<5then
Is_Int=true
exitfunction
endif
ifcint(left(a_str,4))>3276then
Is_Int=false
exitfunction
elseifcint(left(a_str,4))=3276andcint(right(a_str,1))>7then
Is_Int=false
exitfunction
else
Is_Int=true
exitfunction
endif
endfunction</P><P>检测是不是是长整数
functionIs_Lng(a_str)
ifnotisnumeric(a_str)orlen(str)>10then
Is_Lng=false
exitfunction
elseiflen(str)<10then
Is_Lng=true
exitfunction
endif
ifclng(left(a_str,9))>214748367then
Is_Lng=false
exitfunction
elseifclng(left(a_str,9))=214748367andclng(right(a_str,1))>7then
Is_Lng=false
exitfunction
else
Is_Lng=true
exitfunction
endif
endfunction
ASP.NET和ASP的比较,技术上比较已经没什么可说的了.新一代在大部分程度来说当然是比旧一代好了.关键看你对所做软件的理解了.因人而定.会写的话也可能比ASP.NET写得更有效率和更方便重用 |
|