sql >> Database teknologi >  >> RDS >> Oracle

Call lagret procedure, der indeholder indsamling af poster ved hjælp af callproc i python

Du må ikke direkte bruge collections.namedtuple som Oracle-objekttype.

Jeg prøvede nedenstående på Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 med Cx-Oracle-7.0.0 og Python 3.6.4 og det virker for mig.

Opret TYPE

CREATE OR REPLACE TYPE object_tag_rec AS OBJECT (
     tag_type       VARCHAR2(1),
     tag_category   VARCHAR2(100),
     tag_key        VARCHAR2(250),
     tag_value      VARCHAR2(250),
     created_by     VARCHAR2(50)
);
/

Opret samling

CREATE OR REPLACE TYPE object_tag_tbl is TABLE OF object_tag_rec;
/

Opret procedure

CREATE OR REPLACE procedure  sp_add_object_tags(
pi_account_id               IN  INT,
pi_object_id                IN  INT,
pi_all_tags_identified      IN  VARCHAR2,
pi_object_tag_tbl           IN  object_tag_tbl,
po_error_code               OUT NUMBER,
po_error_message            OUT VARCHAR2 )
AS 
BEGIN

   po_error_code    := 0;
   po_error_message := 'NO ERRORS';
END;
/

kode

import cx_Oracle
conn = cx_Oracle.connect('user/[email protected]//localhost:1521/dbname')
cur = conn.cursor()

recordTypeObj = conn.gettype("HR.OBJECT_TAG_REC") #mind the cases
tableTypeObj  = conn.gettype("HR.OBJECT_TAG_TBL")
params = tableTypeObj.newobject()

rec = recordTypeObj.newobject()
(rec.TAG_TYPE,rec.TAG_CATEGORY,rec.TAG_KEY,rec.TAG_VALUE,rec.CREATED_BY) = ("S","person","person","1","abc")  
#mind the cases for attributes.

po_error_code    = cur.var(cx_Oracle.NUMBER)
po_error_message = cur.var(cx_Oracle.STRING)

params.append(rec)
cur.callproc('dbms_output.enable')
cur.callproc('hr.sp_add_object_tags', [1234, 5678, 'N', params, po_error_code, po_error_message])

print (po_error_code.getvalue(),po_error_message.getvalue())

Udførelse

$python pass_obj.py
0.0 NO ERRORS



  1. SSIS-pakke giver fejl efter implementering af SQL Server 2012

  2. Automatiseret eller regelmæssig backup af mysql-data

  3. Er unikke indekser bedre til kolonnesøgeydelse? (PGSQL &MySQL)

  4. Hvordan opretter man dummy-variable kolonner for tusindvis af kategorier i Google BigQuery?