码迷,mamicode.com
首页 >  
搜索关键字:ext    ( 40754个结果
MySQL存储过程详解 mysql 存储过程(二)
mysql存储过程详解1. 存储过程简介我们常用的操作数据库语言SQL语句在执行的时候需要要先编译,然后执行,而存储过程(Stored Procedure)是一组为了完成特定功能的SQL语句集,经编译后存储在数据库中,用户通过指定存储过程的名字并给定参数(如果该存储过程带有参数)来调用执行它。一个存...
分类:数据库   时间:2014-05-09 23:45:15    阅读次数:485
Robot Framework
http://www.usyiyi.cn/robot_framework/1.Robot Framework测试数据以表格形式定义,无论是使用超文本标记语言(HTML),制表符分隔值(TSV),纯文本,或reStructuredText(REST)格式。这些格式及其主要优点和问题的细节,在后面的章节...
分类:其他好文   时间:2014-05-09 23:41:47    阅读次数:283
手机号段确定手机号码服务商类别
1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6: namespace AnkeEdu.Tools 7: { 8: 9: /// 10: ///...
分类:移动开发   时间:2014-05-09 23:40:45    阅读次数:551
日期转换类
1: 2: // 创建日期: 2008-04-23 3: // 说 明: 日期,时间处理相关的类,大多转换为字符串。 4: using System; 5: using System.Collections.Generic; 6: using System.Text; 7: 8: namespace...
分类:其他好文   时间:2014-05-09 23:38:25    阅读次数:459
使用sql语句查询日期在一定时间内的数据
使用sql语句查询日期在一周内的数据select * from ShopOrder where datediff(week,ordTime,getdate()-1)=0 //查询当天日期在一周年的数据select * from ShopOrder where datediff(day,ordTime...
分类:数据库   时间:2014-05-09 23:37:52    阅读次数:658
Theos简介
【Theos简介】 Theos is a cross-platform suite of development tools for managing, developing, and deploying iOS software without the use of Xcode. The Th.....
分类:其他好文   时间:2014-05-09 23:33:29    阅读次数:456
使用增强for循环遍历集合的时候操作集合的问题?
1 // 遍历一个list 2 public static void printList(List list){ 3 for (String string : list) { 4 list.add("eeee"); // 运行错误 5 ...
分类:其他好文   时间:2014-05-09 23:31:33    阅读次数:467
日期类2
1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6: namespace AkDTH.Common 7: { 8: /// 9: /// 时间字符...
分类:其他好文   时间:2014-05-09 23:29:10    阅读次数:400
网页参数
网页可见区域宽:document.body.clientWidth网页可见区域高:document.body.clientHeight网页可见区域宽:document.body.offsetWidth (包括边线的宽)网页可见区域高:document.body.offsetHeight (包括边线的...
分类:Web程序   时间:2014-05-09 23:28:41    阅读次数:493
webdriver 窗口切换
1.通过浏览器的句柄来操纵窗口,得到句柄的方法 public String getWindowHandle(){ String currentWindow = driver.getWindowHandle(); return currentWindow; } 2.切换到最新的窗口 pub...
分类:Web程序   时间:2014-05-09 23:27:19    阅读次数:406
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!