python链接oracle,要安装cx_Oracle代码:#-*-coding=utf-8import cx_Oracleimport mathComn=cx_Oracle.Connection('system/wzh123456@192.168.0.40/orcl')Cur=Comn.curso...
分类:
数据库 时间:
2014-10-23 16:04:07
阅读次数:
193
前期准备: createt table employee(ID int ,Name varchar(4)); 用下列方法向表中循环插入数据。----------------------------------------------------------------------...
分类:
数据库 时间:
2014-10-11 19:13:36
阅读次数:
155
ORA-00913错误
描述:PL/SQL: ORA-00913: too many values
目标:编写一个可以循环插入数据的脚本
操作过程:
SQL> desc tcustmer
Name Null? Type
----------------- -------- -------------------------...
分类:
数据库 时间:
2014-06-21 21:40:02
阅读次数:
326
CREATE PROCEDURE dowhile()
BEGIN
DECLARE n int;
set n=1;
WHILE n
do
INSERT into hasindex(num) VALUES (n);
set n=n+1;
END WHILE;
END;
CALL dowhile();...
分类:
其他好文 时间:
2014-05-09 01:04:44
阅读次数:
293