i'm trying to test the existance of a database using ant.
<sql driver="mydriver" url="myurl" userid="myuserid" passworkd="mypassword"
faiOnConnectionError="false"
onerror="continue"
warningproperty="db.empty"
errorproperty="db.empty"
src="mySrc"
print="false"
output="db.present"
showWarnings="false" />
When the database does not exists, i have a message in the console indicating that the database does not exists (which is normal).
My need is to deactivate the display of this message, is there a way that can do this?