Hello!
I run SQL queries from JAVA program (an example is shown below). My question is: Is it possible to run SQL query, if column names are defined in an array and the array size is not known apriori? Thanks!
public void setQuery(String query) {
try {
int rs = statement.executeUpdate(query);
} catch (Exception e) {
e.printStackTrace();
}
}