码迷,mamicode.com
首页 >  
搜索关键字:cursor    ( 2614个结果
Android服务器端如何遍历MySql查询结果
============问题描述============ 如题,想做一个类似于微信朋友圈或者新浪微博的发状态功能。用户进入后显示所有人发的状态,可是在服务器端该怎么写遍历Sql呢?用Cursor遍历的话,Servlet该怎么写?请前辈指教~感激不尽。 ...
分类:移动开发   时间:2014-10-20 23:08:49    阅读次数:254
innerHTML应用--自动生成一个V字形
一、效果图。二、HTML+CSS代码。<style>.box{width:800px;margin:90pxauto;}.btn{padding:5px10px;color:#fff;background:#ff6600;cursor:pointer;font-size:16px;border-radius:5px;}.list{position:relative;margin-top:20px;}.listli{width:50px;height:50px;position..
分类:Web程序   时间:2014-10-20 17:34:33    阅读次数:311
python sqlite(1)
#!/usr/bin/env python# coding=utf-8import sqlite3conn = sqlite3.connect(":memory:")c = conn.cursor()c.execute( '''CREATE TABLE stocks(data text,tra...
分类:数据库   时间:2014-10-20 14:56:19    阅读次数:186
SQL Server 数据库游标选项
背景: 游标控制服务器端游标的行为,相关的T-SQL如下: declare , open , fetch , close , deallocate。1、 cursor_close_on_commit{on | off}; 如果设置为on 在事务提交时或回滚时会关闭打开的游标, 如果设置为...
分类:数据库   时间:2014-10-20 13:26:26    阅读次数:150
Android中的数据库操作
============问题描述============ 在服务器端想遍历sql的查询结果,但找到Cursor用法的教程都是纯sql代码。Cursor可以直接在java代码里写吗?像Android中SQLlite里的Cursor用法那样。 ...
分类:移动开发   时间:2014-10-19 22:55:34    阅读次数:169
将所有 UNUSABLE 状态的 index 修复
-- 请以 DBA 权限登录,并执行-- 将所有 UNUSABLE 状态的 index 修复, rebuild 一下即可declare -- 指向所有 UNUSABLE 状态的 index 的游标 cursor c is select index_name, owner from dba_ind.....
分类:其他好文   时间:2014-10-19 21:20:08    阅读次数:163
SimpleCursorAdapter的构造函数被声明为废除,不能用了吗?那该用什么代替呢
============问题描述============ new一个SimpleCursorAdapter时,eclips给出了如下的警告:TheconstructorSimpleCursorAdapter(Context,int,Cursor,String[],int[])isdeprecated...
分类:其他好文   时间:2014-10-18 23:40:47    阅读次数:251
python 向MySQL里插入中文数据
用python向MySQL中插入中文数据出错,原代码片段:1 db = MySQLdb.connect("localhost","root","123","TESTDB")2 cursor = db.cursor()3 sql = '''INSERT INTO aaaa(bb,cc) values(...
分类:数据库   时间:2014-10-18 11:11:26    阅读次数:189
android 出现Make sure the Cursor is initialized correctly before accessing data from it
Make sure the Cursor is initialized correctly before accessing data from it 详细错误是:java.lang.IllegalStateException: Couldn't read row 0, col 2 from Cur...
分类:移动开发   时间:2014-10-17 23:17:55    阅读次数:8377
JQuery学习笔记-JQuery的动画效果
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <metahttp-equiv="Content-Type"content="text/html;charset=UTF-8"> <title>UntitledDocument</title> <styletype="text/css"&..
分类:Web程序   时间:2014-10-17 19:00:57    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!