上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: 什么是WebService: 这个不用我在这里废话,网上的资料一搜一大把,如果你没有接触过这方面的知识,你可以先去网上查一下。这里我只想说一下我印象比较深刻的几点: WebService是基于soap协议的。说实话这个知识刚开始我理解的并不是很到位。这也在很长的时间局限了我在代码过程中的思维。我会在 阅读全文
posted @ 2018-03-09 10:14 AaronBear 阅读(184) 评论(0) 推荐(0) 编辑
摘要: Endpoint: http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx web服务的URI地址,你访问之后,就会出现web服务的相关类描述、方法列表以及方法描述。 Disco: http://webservice.webxml.com 阅读全文
posted @ 2018-03-09 09:20 AaronBear 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 原文出处:https://www.cnblogs.com/wuhuisheng/archive/2011/03/23/1992652.html 验证电话号码的主要代码如下: public bool IsTelephone(string str_telephone) { return System.T 阅读全文
posted @ 2018-02-08 16:30 AaronBear 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 原博地址:http://www.jb51.net/article/20181.htm --DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime 阅读全文
posted @ 2018-02-05 14:31 AaronBear 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 原文出处:http://blog.csdn.net/ws0513/article/details/49980547 (1)DELETE语句执行删除的过程是每次从表中删除一行,并且同时将该行的删除操作作为事务记录在日志中保存以便进行进行回滚操作。 TRUNCATE TABLE 则一次性地从表中删除所有 阅读全文
posted @ 2018-01-26 14:39 AaronBear 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 一、简介 在oracle中start with connect by (prior) 用来对树形结构的数据进行查询。其中start with conditon 给出的是数据搜索范围, connect by后面给出了递归查询的条件,prior 关键字表示父数据,prior 条件表示子数据需要满足父数据 阅读全文
posted @ 2018-01-23 23:24 AaronBear 阅读(200) 评论(0) 推荐(0) 编辑
摘要: Oracle基础练习题,采用Oracle数据库自带的表,适合初学者,其中包括了一些简单的查询,已经具有Oracle自身特点的单行函数的应用 本文使用的实例表结构与表的数据如下: emp员工表结构如下: dept部门表: 提示:工资 = 薪金 + 佣金 emp表的现有数据如下: dept表的现有数据如 阅读全文
posted @ 2018-01-15 10:42 AaronBear 阅读(438) 评论(0) 推荐(0) 编辑
摘要: sql%found,sql%notfound,sql%rowcount 在执行DML(insert,update,delete)语句时,可以用到以下三个隐式游标(游标是维护查询结果的内存中的一个区域,运行DML时打开,完成时关闭,用sql%isopen检查是否打开): sql%found (布尔类型 阅读全文
posted @ 2018-01-09 08:59 AaronBear 阅读(451) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_713978a50100prkt.html CLOB里存的是2进制 判定长度 DBMS_LOB.GETLENGTH(col1)获取文本 DBMS_LOB.SUBSTR(col1,n,pos)DBMS_LOB.SUBSTR(col1,10, 阅读全文
posted @ 2017-12-13 09:38 AaronBear 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 这个文档几乎包含了oracle游标使用的方方面面,全部通过了测试 阅读全文
posted @ 2017-12-12 16:59 AaronBear 阅读(323) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页