Re: [GENERAL] pg_start_backup question

2009-10-30 Thread db de
t.println("ret:" + ret); //LINE3 } After LINE1 is executed, LINE3 is run and the output is: ret:false. LINE2 is not executed. Thanks. Jack On Fri, Oct 30, 2009 at 4:06 PM, Guillaume Lelarge wrote: > Le vendredi 30 octobre 2009 à 23:41:54, db de a écrit : > > How to execute &

[GENERAL] pg_start_backup question

2009-10-30 Thread db de
How to execute "SELECT pg_start_backup('label');" from java as a SQL statement? I tries to use: Statement.execute("SELECT pg_start_backup('label')") But it does not work. Thanks. Jack