> (I've got a query that can find all
> foreign keys on a
> > relation, and what they relate to, that I'm going to add to psql).
>
> How'd you do the splitting of the arguments to get the columns referenced?
> That was the biggest problem I was having, trying to get the bytea split
> up. (Well, without writing a function to do it for me)
My original functionality for showing foreign keys was implemented in PHP,
so all I had to do was go:
$tgargs = explode('\000', $row['tgargs']);
It's going to be harder to do that in C I guess...
Chris