Frequently Asked Questions (FAQ):
1. After connecting the components and PxWebQuery PxSuperGrid, I did not create a new line? Functions such as editing and deleting function.
Answer: In order to put as PxWebQuery components through lines need to create a new sequence,
from which the component PxWebQuery reads the unique ID for its primary key. Sequenced name, you should create
follows:
SEQ_"primary key column name"
Therefore, when you create new tables do not make the name column of primary key 'ID', but as ID + "table name".
So that in your example, it worked inserting data into a database, create a SQL command Sequence by name
create under the above definition:
CREATE SEQUENCE SEQ_IDADRESAR
START WITH 1
INCREMENT BY 1
MAXVALUE 1E18
NOMINVALUE
NOORDER
NOCACHE
NOCYCLE;