On Thu, 31 Aug 2006, [EMAIL PROTECTED] wrote:
Hello -
I am attempting to find a way to make use of arrays of text, as demonstraited
by the following:
CREATE TABLE messages (
id SERIAL,
format TEXT NOT NULL,
arguments TEXT[]
);
Into that table will be values that you would associate with
Alvaro Herrera wrote:
[EMAIL PROTECTED] wrote:
Hello -
I am attempting to find a way to make use of arrays of text, as
demonstraited by the following:
Interesting problem. Apparently plperl is not cool about parsing arrays
in the arguments to Perl arrays -- at least I couldn't make it work,
[EMAIL PROTECTED] writes:
> * If I could figure a way to pass a variable number of arguments to a
> plperl function, or an array reference, I could use something like this
> function:
Doesn't plperl already contain a feature to convert a Postgres array
into a Perl array? It may be docum
[EMAIL PROTECTED] wrote:
> Hello -
>
> I am attempting to find a way to make use of arrays of text, as
> demonstraited by the following:
Interesting problem. Apparently plperl is not cool about parsing arrays
in the arguments to Perl arrays -- at least I couldn't make it work, and
I don't find
Hello -
I am attempting to find a way to make use of arrays of text, as
demonstraited by the following:
CREATE TABLE messages (
id SERIAL,
format TEXT NOT NULL,
arguments TEXT[]
);
Into that table will be values that you would associate with some form of
printf. For example:
INSERT I