摘要: * Returns an image stored in the file at the specified path * @param path String The path to the image file * @return Image The image stored in the ... 阅读全文
posted @ 2015-12-03 15:01 有朋远方来 阅读(350) 评论(0) 推荐(0) 编辑
摘要: Java实现Map集合二级联动 Map集合可以保存键值映射关系,这非常适合本实例所需要的数据结构,所有省份信息可以保存为Map集合的键,而每个键可以保存对应的城市信息,本实例就是利用Map集合实现了省市级联选择框,当选择省份信息时,将改变城市下拉选择框对应的内容。 思路分析: 1. 创建全国(... 阅读全文
posted @ 2015-12-03 14:59 有朋远方来 阅读(1167) 评论(0) 推荐(0) 编辑
摘要: 函数: 1、从左开始截取字符串 left(str, length) 说明:left(被截取字段,截取长度) 例:select left(content,200) as abstract from my_content_t 2、从右开始截取字符串 right(str, length) ... 阅读全文
posted @ 2015-12-02 15:13 有朋远方来 阅读(2443) 评论(0) 推荐(0) 编辑
摘要: -- 声明游标;CURSOR cursor_name IS select_statement--For 循环游标--(1)定义游标--(2)定义游标变量--(3)使用for循环来使用这个游标declare --类型定义 cursor c_job is ... 阅读全文
posted @ 2015-10-30 22:21 有朋远方来 阅读(354) 评论(0) 推荐(0) 编辑