How to fill DataGridView from nested table oracle
- by arkadiusz85
I want to create my type:
CREATE TYPE t_read AS OBJECT (
id_worker NUMBER(20),
how_much NUMBER(5,2),
adddate_r DATE,
date_from DATE,
date_to DATE
);
I create a table of my type:
CREATE TYPE t_tab_read AS TABLE OF t_read;
Next step is create a table with my type:
enter code hereCREATE TABLE Reading (
id_watermeter NUMBER(20) constraint…