On Thu, Feb 10, 2005 at 07:32:35AM +0100, Együd Csaba wrote:
>
> In case of arrays I can use array_to_string(), but I couldn't find any
> functions to convert bit(*) to string (in a format like this: e.g. '10011').
I don't know if this will always work, but with current implementations
of PL/pgSQL you can do this:
CREATE FUNCTION bit2text(bit) RETURNS text AS '
BEGIN
RETURN $1;
END;
' LANGUAGE plpgsql IMMUTABLE STRICT;
See also CREATE CAST.
--
Michael Fuhr
http://www.fuhr.org/~mfuhr/