码迷,mamicode.com
首页 >  
搜索关键字:cursor pin s wait on    ( 8014个结果
MySQLdb插入后获得插入id
print"ID of last record is ", int(cursor.lastrowid) #最后插入行的主键IDprint"ID of inserted record is ", int(conn.insert_id()) #最新插入行的主键ID,conn.insert_id()一定要...
分类:数据库   时间:2014-05-12 13:02:44    阅读次数:394
并发 错误 java.lang.IllegalMonitorStateException: current thread not owner 分析
public class ThreadTest implements Callable { public String call() throws Exception { // TODO Auto-generated method stub wait(10000); return "hello"; } }调用代码: public static void main(Stri...
分类:编程语言   时间:2014-05-11 21:27:24    阅读次数:533
IAR编译STM8S 中的脚位操作对库函数的一点修改
typedef enum //{  // GPIO_PIN_0    = ((u8)0x01),  /*! //  GPIO_PIN_1    = ((u8)0x02),  /*! //  GPIO_PIN_2    = ((u8)0x04),  /*! //  GPIO_PIN_3    = ((u8)0x08),   /*!  // GPIO_PIN_4    = ((u8)0x1...
分类:其他好文   时间:2014-05-11 07:10:01    阅读次数:517
Python Mysql
import MySQLdb# 打开数据库连接db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )# 使用cursor()方法获取操作游标 cursor = db.cursor() #cursor用来执行命令的方法:
分类:数据库   时间:2014-05-10 06:03:19    阅读次数:309
oracle cursor
Oracle will generate something called cursor after it parse an statement. This thing--cursor will be stored in Library cache, if next time you need to...
分类:数据库   时间:2014-05-10 01:02:22    阅读次数:579
java.sql.SQLException: Before start of result set
错误原因: 如API中所述 API: A table of data representing a database result set, which is usually generated by executing a statement that queries the database. A ResultSet object maintains a cursor pointi...
分类:数据库   时间:2014-05-09 21:00:43    阅读次数:423
js jquery 按钮点击后 60秒之后才能点击 60秒倒计时
var wait = 60; function time(o) { if (wait == 0) { $(o).attr("disabled", false); $(o).val("获取验证码"); wait = 60; ...
分类:Web程序   时间:2014-05-09 19:25:41    阅读次数:569
DB2中使用游标的注意事项
1.commit和rollback操作会让游标close掉,除非open的时候使用hold方式打开和使用游标2.close掉cursor之后不用freecursor,但是closeallcator之后要记得freeallocator
分类:数据库   时间:2014-05-09 14:27:04    阅读次数:348
[转]Apple iPod, iPhone (2g, 3g), iPad Dock connector pinout
PinSignalDescriptionApple pin numbering*1GNDGround (-), internally connected with Pin 2 on iPod motherboard302GNDAudio & Video ground (-), internally ...
分类:移动开发   时间:2014-05-09 13:12:11    阅读次数:640
线程与进程
进程:运行在系统中的任务,程序的一次执行。线程:运行在进程中的任务,可以理解为进程中的执行的一段程序片段。一个进程至少要有一个主线程。线程的八个状态1:新建2:就绪3:运行4:死亡在运行状态中又有4个状态1:睡眠(sleep)自然醒.2:等待(wait)需要别人叫才会醒3:挂起(yield)让出本次...
分类:编程语言   时间:2014-05-09 05:58:53    阅读次数:378
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!