which library did you get the StringUtils class from?
And what exactly did you expect it to do?
On 2012-01-11 13:42, Christian123456789 wrote:
Check this code:
public class Test {
public static ResultSet test(Connection c, String... args) throws
Exception {
Logger.getAnonymousLogger().info("" + args.length);
Logger.getAnonymousLogger().info(StringUtils.getStringOf(args));
return null;
}
}
After a: select * from test('a', 'b', 'c'); I will get:
11.01.2012 12:39:35 Test test
INFO: 1
11.01.2012 12:39:35 Test test
INFO: {a}
How can I get this to work like expected?
Thanks and Cheers
Chris
--
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en.