Your database mapping is probably not set up correctly. In your project-schema.xml, do you have the name attribute of database element assigned to your database name correctly?
Regards, Daniel -----Original Message----- From: Sez Sez [mailto:[EMAIL PROTECTED] Sent: Monday, April 05, 2004 4:17 AM To: [EMAIL PROTECTED] Subject: Problems with save 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]
