码迷,mamicode.com
首页 >  
搜索关键字:cursor    ( 2614个结果
(二)学习CSS之cursor属性
参考:http://www.w3school.com.cn/tiy/t.asp?f=csse_zindexcursor 属性规定要显示的光标的类型(形状)。请把鼠标移动到单词上,可以看到鼠标指针发生变化:AutoCrosshairDefaultPointerMovee-resizene-resize...
分类:Web程序   时间:2014-09-02 22:50:55    阅读次数:239
安卓学习-界面-ui-Adapter
Adapter分一下几种类别ArrayAdapter:ListView那边基本上已经讲过了,没什么特殊的,就是一个数组SimpleAdapter:比较强大了功能,基本上ListView都是用他的SimpleCursorAdapter:和SimpleAdapter差不多,包装了cursor提供的数据B...
分类:移动开发   时间:2014-09-02 19:39:25    阅读次数:211
js拖动层
模仿网易彩票网(http://caipiao.163.com/)的登陆框自己做了一个拖动层,不过有点小问题——在谷歌浏览拖动的时候鼠标状态变成了文字状态(cursor:text;) 1 2 3 4 5 js拖动层 6 15 16 17 18 hello world19 20 ...
分类:Web程序   时间:2014-09-02 17:20:15    阅读次数:387
oracle存储过程+游标处理select数据
create or replace PROCEDURE UPDATE_RECORDCODE is cursor location_data is select * from location where remark in('952701','9527008','952705');--申明游标 serviceCode NUMBER:=1; BEGIN for l in locati...
分类:数据库   时间:2014-09-02 12:29:14    阅读次数:220
PL/SQL个人学习笔记(二)
declare cursor s is select version from city_server t; s_ city_server.version%type;begin open s; fetch s into s_; if s_>2 then DBMS_OUTPUT.put_line(s_); end if; close s;end;...
分类:数据库   时间:2014-09-02 10:35:24    阅读次数:200
查询android系统数据库 自定义sql语句 办法
Cursor draftCursor = mResolver.query(Uri.parse("content://sms"), new String[] {"canonical_addresses.address " + "from sms,threads,canonical_ad...
分类:移动开发   时间:2014-09-01 17:34:33    阅读次数:273
CSS cursor 属性 (不同光标)
CSS 参考手册实例一些不同的光标:span.crosshair {cursor:crosshair;}span.help {cursor:help;}span.wait {cursor:wait;}亲自试一试浏览器支持IEFirefoxChromeSafariOpera所有主流浏览器都支持 cur...
分类:Web程序   时间:2014-08-31 18:28:41    阅读次数:229
oracle ref游标
Oracle 系列:REF Cursor在上文 Oracle 系列:Cursor (参见:http://blog.csdn.net/qfs_v/archive/2008/05/06/2404794.aspx)中提到个思考:怎样让游标作为参数传递? 解决这个问题就需要用到 REF Cursor 。1,...
分类:数据库   时间:2014-08-30 23:02:20    阅读次数:329
关于光标属性cursor
光标的形状取值主要有以下几种: ? ? ?default,默认光标;hand,竖起一只手指的手形光标;crosshair,简单的十字线光标; ? ? ?text,大写字母I的形状;wait,用于标示程序忙用户需要等待的光标。 ? ...
分类:其他好文   时间:2014-08-29 00:12:56    阅读次数:320
android开发数据库Cursor 错误android.database.CursorWindowAllocationException
做android 开发的经常会遇android.database.CursorWindowAllocationException这样子的错误;一般出现这样的错误,大部分原因是因为没有关闭cursor,或者是因为Cursor使用不当,之前我的遇到这样的代码: ForecastData situation = null; ................ Cursor cursor...
分类:移动开发   时间:2014-08-28 16:18:59    阅读次数:342
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!