摘要:
//函数名:IsNumber //功能介绍:检查是否为数字 //参数说明:要检查的数字 //返回值:1为是数字,0为不是数字 function IsNumber(num) { var i, j, strTemp; strTemp = "0123456789"; if (num.length == 0) return 0 for (i = 0; i < num.length; i++) { j =... 阅读全文
摘要:
在日常的开发中,常常会修改数据库,在学校里老师教我们数据中更新语句就是 update quotation set isconfirmed='1' where id='00001' 然而在实际的开发中这样做却有很多的弊端。可能在SSMS执行的时候一不小心没有 选中where id='00001'。'完蛋了~~',数据库中的所有数据都被你更新了。 解决这个问题我们可以在update的时候这样做 begin tran update quotation set isconfirmed='1' where id='0 阅读全文
摘要:
From Wikipedia, the free encyclopedia
Jump to: navigation, search
For the search engine of the same name, see WebCrawler. For the fictional robots called Skutters, see Red Dwarf characters#The Sku... 阅读全文