salve a tutti ho un rompicapo per voi.

In un programma che ho scritto, dichiaro uno statement di tipo sensitive ed

updatable

xche quando eseguo un comando di tipo update su di un campo mi dice che il cursore
e' di tipo read only?

e' veramente molto strano, e non riesco a venirne fuori in alcun modo



conforall =DriverManager.getConnection("jdbc:sqlserver://"+server+":1433;databaseName=forall;integratedSecu rity=false;user=sa;password=sandro" );

stmtnt_neo_1=conforall.createStatement (ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_ UPDATABLE);
stmtnt_neo_2=conforall.createStatement (ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_ UPDATABLE);


rsnt_neo_1.updateString("presidio_descr",null);
rsnt_neo_1.updateRow();