Home
The Toolkit for Online Communities
15887 Community Members, 0 members online, 1923 visitors today
Log In Register

Forum OpenACS Q&A: Type declaration

OpenACS Home : Forums : OpenACS Q&A : Type declaration

Icon of Envelope Request notifications

+
Posted by Nick Carroll on
Hi,

How would I make the following Oracle declaration in a Postgresql
function?

TYPE int_tab IS TABLE OF INTEGER INDEX BY binary_integer;
ids    int_tab;
date_ids int_tab;

+
Posted by Roberto Mello on
I know of no straight-forward way to do this in PostgreSQL. You'll have to think of a different way to do what you're trying to do (which is not evident from the information you posted).