Domande taggate «resultset»


10
Verifica di un valore int nullo da un ResultSet Java
In Java sto cercando di verificare un valore null, da un ResultSet, in cui la colonna viene eseguita il cast su un tipo int primitivo . int iVal; ResultSet rs = magicallyAppearingStmt.executeQuery(query); if (rs.next()) { if (rs.getObject("ID_PARENT") != null && !rs.wasNull()) { iVal = rs.getInt("ID_PARENT"); } } Dal frammento di …
277 java  null  resultset 

14
Conversione più efficiente di ResultSet in JSON?
Il codice seguente converte a ResultSetin una stringa JSON usando JSONArraye JSONObject. import org.json.JSONArray; import org.json.JSONObject; import org.json.JSONException; import java.sql.SQLException; import java.sql.ResultSet; import java.sql.ResultSetMetaData; public class ResultSetConverter { public static JSONArray convert( ResultSet rs ) throws SQLException, JSONException { JSONArray json = new JSONArray(); ResultSetMetaData rsmd = rs.getMetaData(); while(rs.next()) { …
109 java  sql  json  resultset 

5
Come ottenere il numero di colonne da un ResultSet JDBC?
Sto usando CsvJdbc (è un driver JDBC per file csv) per accedere a un file csv. Non so quante colonne contiene il file csv. Come posso ottenere il numero di colonne? Esiste una funzione JDBC per questo? Non riesco a trovare alcun metodo per questo in java.sql.ResultSet. Per accedere al …
92 java  jdbc  csv  resultset 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.