From: marek at lewczuk.com (Marek Lewczuk) Date: Thu, 18 May 2006 13:41:53 +0200 Subject: [Pljava-dev] ResultSet getString In-Reply-To: <446C55FE.2020902@tada.se> References: <446C5033.2000508@lewczuk.com> <446C55FE.2020902@tada.se> Message-ID: Thomas Hallgren napisa?(a): > Hi Marek, > Yes, this is part of the new and improved data type mapping in PL/Java. > Arrays are recognized as such so a varchar[] will map to a String[]. > You'll find a complete list of mappings here: > http://wiki.tada.se/display/pljava/Default+Type+Mapping. Ok, I thought that getString() will return any postgresql type as string - e.g. varchar[] would be {"val","val"}, boolean would be "t" or "f" - that is how pgsql works, when assigning value of any type to variable defined as text/varchar. ML