Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I check to see if a column name exists in a CachedRowSet?

I am querying data from views that are subject to change. I need to know if the column exists before I do a crs.get******().

I have found that I can query the metadata like this to see if a column exist before I request the data from it:

ResultSetMetaData meta = crs.getMetaData();
int numCol = meta.getColumnCount();

for (int i = 1; i < numCol + 1; i++) 
    if (meta.getColumnName(i).equals("name"))
        return true;

Is there a simpler way of checking to see if a column exists?


EDIT

It must be database agnostic. That is why I am referencing the CachedRowSet instead of the database.

like image 665
WolfmanDragon Avatar asked Jan 20 '09 18:01

WolfmanDragon


4 Answers

There's not a simpler way with the general JDBC API (at least not that I know of, or can find...I've got exactly the same code in my home-grown toolset.)

Your code isn't complete:

ResultSetMetaData meta = crs.getMetaData();
int numCol = meta.getColumnCount();

for (int i = 1; i < numCol + 1; i++) {
    if (meta.getColumnName(i).equals("name")) {
        return true;
    }
}

return false;

That being said, if you use proprietary, database-specific API's and/or SQL queries, I'm sure you can find more elegant ways of doing the same thing. Bbut you'd have to write custom code for each database you need to deal with. I'd stick with the JDBC APIs, if I were you.

Is there something about your proposed solution that makes you think it's incorrect? It seems simple enough to me.

like image 149
Jared Avatar answered Oct 05 '22 23:10

Jared


you could take the shorter approach of using the fact that findColumn() will throw an SQLException for InvalidColumName if the column isn't in the CachedRowSet.

for example

 try {
     int foundColIndex = results.findColumn("nameOfColumn");
} catch {
  // do whatever else makes sense
}

Likely an abuse of Exception Handling (per EffectiveJava 2nd ed item 57) but it is an alternative to looping through all the columns from the meta data.

like image 40
Peter Mullarkey Avatar answered Oct 05 '22 23:10

Peter Mullarkey


Which Database?

I think in Oracle there are tables where the columns are listed.

I don't remember if it work for views also, but I guess they do, it was something like:

select colum_name from all_views where view_name like 'myview'

or

select name from all_objects where object_name like 'myview' and object_type='view'

I don't remember exactly the syntax. You should have spacial permissions though.

Every RDBMS should have something similar.

You can also perform the query

select * from myView where 1 = 0 ; 

And from the metadata get the columns, if what you want it to avoid fetching the data before to know if the columns are present.

like image 36
OscarRyz Avatar answered Oct 05 '22 23:10

OscarRyz


No, there really isn't a better way. You may want to relook at the problem. If you can redefine the problem, sometimes it makes the solution simpler because the problem has changed.

like image 26
Joshua Avatar answered Oct 05 '22 22:10

Joshua