2013年7月9日
摘要: Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student; select count(distinct sex) from student; --top 取前N条记录 select top 3 * from student; --alias 阅读全文
posted @ 2013-07-09 14:52 zzlanyy 阅读(44) 评论(0) 推荐(0)
  2013年4月18日
摘要: 一篇很详细的介绍TextView属性的,收藏必须的. android:autoLink设置是否当文本为URL链接/email/电话号码/map时,文本显示为可点击的链接。可选值(none/web/email/phone/map/all) android:autoText如果设置,将自动执行输入值的拼写纠正。此处无效果,在显示输入法并输入的时候起作用。 android:bufferType指定getText()方式取得的文本类别。选项editable 类似于StringBuilder可追加字符, 也就是说getText后可调用append方法设置文本内容。spannable 则可在... 阅读全文
posted @ 2013-04-18 01:06 zzlanyy 阅读(193) 评论(0) 推荐(0)