|
I have a table with a "GENERATED ALWAYS AS IDENTITY" column, but I/* , primary key (TKTTKTDID) -- may be desired here? */
don't know how to get my INSERT to work with that column: Is there
some variable type that matches the identity column???
DDL:
CREATE TABLE PDATALIB/TKT001DPF (
TKTSYSID DECIMAL(3,0) DEFAULT 0,
TKTAEMAIL CHAR(64),
TKTREMAIL CHAR(64),
TKTTEMAIL CHAR(64),
TKTPRBNAM CHAR(64),
TKTPRIRTY DEC(2,0) DEFAULT 0,
TKTSTATUS CHAR(26),
TKTTKTTYP CHAR(16),
TKTSUBJEC CHAR(64),
TKTBODY CHAR(1024),
TKTNUMBER INTEGER,
TKTTIMSTMP TIMESTAMP,
TKTTKTDID INT NOT NULL GENERATED ALWAYS AS IDENTITY
)/* column list (omits identity column): */
RCDFMT TKT001DR;
code:
Exec SQL
Insert into pdatalib/TKT001DPF
VALUES
( :P1_SysID , :P2_AEmail , :P3_REmail,
:P4_TEmail , :P5_PrbName , :P6_Priority,
:P7_Status , :P8_TktType, :P9_Subject,
:PA_Body , :TICKET# , :TIMSTAMP ) ;
above code generates SQL0117 Statement contains wrong number of
values.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.