possibly the problem is in that you should provide a correct databse name of your datebase as it was set in your Torque properties. In your message you have written save(String name_conneciton).
Maybe that will help.
Regards, Kostya
Sez Sez wrote:
Hi! I have a problem when save a information with a torque, with 3.0.2 version.
If i try to save with method save(connection con), it
will do correctly.
If i try to save wiht method save(String
name_conneciton) or save(), it will give me this
error:
"Connection object was null. This could be due to a
misconfiguration of the DataSourceFactory. Check
logs...
The code is here
public void save(String dbName) throws TorqueException { Connection con = null; try { con = Transaction.begin(dbName); save(con); Transaction.commit(con); } catch(TorqueException e) { Transaction.safeRollback(con); throw e; }
}
This code is generated by torque.
___________________________________________________ Yahoo! Messenger - Nueva versi�n GRATIS Super Webcam, voz, caritas animadas, y m�s... http://messenger.yahoo.es
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
