-2
cx_Oracle.DatabaseError : ORA-00984 : 안파이썬 데이터베이스 오류 (여기에서는 허용되지 열)
cur.execute 여기 허용 컬럼 (삽입 ...) 열의 오류 여기
허용되지 보이고import cx_Oracle
class Student:
def __init__(self,studentname,studentperformance):
connection = cx_Oracle.connect('saif/saif')
cur = connection.cursor()
cur.execute('create table student (studentrollno number(10),studentname varchar2(20),studenttype varchar2(20),studentperformance number(5,2),category varchar2(20),bookbank number(1))')
self.rollno = 171641000
self.studentname = studentname
self.studentperformance = studentperformance
# Line below is showing database error
cur.execute('insert into student(studentrollno,studentname,studentperformance) values(self.rollno,self.studentname,self.studentperformance)')
s = Student("saif",75)
의 일부를 볼 바인드 변수를 사용합니다. – MikaS
님이 질문을 추가했습니다. – saif
질문이 아직 없습니다. 단지 오류입니다. –