我使用oracle 11g数据库和python3.6并使用游标尝试使用select语句从数据库中选择列。
import cx_Oracle
con=cx_Oracle.connect("sys/ornnsn@localhost/sysdba")
cur=con.cursor()
cur.execute("SELECT * from Employer")
cur.fetchall()
print(cur.rowcount)
con.close()
行数为0作为输出但是使用sqlplus进入表中的行可以查看。请帮帮我!!