Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to be able to check if I can edit a cell in a database with a new object

Example method declaration:

something.isValid(Object newObject, row, column);

Example cases:

  • If the editing cell stores an Number and I give it a String, the method will return false...
  • If the editing cell has to be different than every other entry (unique) and the new object is the same as something else, the method will also return false....

My main goal... I want to check a whole row, and if everything is valid, I will edit the whole row.

Right now, the only way I can find out if I can actually edit something is by actually editing it and seeing if I get an error.

edit://Interface DatabaseMetaData is a good method. Is there a SQL command method?

*edit://I feel like the resultsetmeta data is good enough. however, where is the isUnique() Method? edit://isSigned() accomplishes this? edit://So I just check if !isSigned() and isWritable(). What about database column conditions? For example... X has to be more than 3 characters...*

share|improve this question

1 Answer

up vote 3 down vote accepted

Don't use Object, but just use the type which is associated with the datatype in question. You can find here more detailed information about which Java object types you should be using for certain DB datatypes with under each this table:

alt text

Alternatively, you can use DatabaseMetaData#getColumns() to figure the column information (column name, datatype, size, maxlength, nullable, etc).

There are lot of other methods which may be of use, e.g. getIndexInfo() to figure all indexes, the getPrimaryKeys() to figure the PK's, the getExportedKeys() to figure the FK's, etcetera. Just poke a bit round in the whole DatabaseMetaData API to find that you need.

share|improve this answer
This was useful but I think ResultSetMetaData is easier. Thoughts? – twodayslate Apr 21 '10 at 18:36
1  
It contains the same information. You only have to create/prepare a Statement and query a ResultSet first before you can get it. This makes not much sense. With just the Connection you can already get the DatabaseMetaData. – BalusC Apr 21 '10 at 18:37
Oh I see. That is a big benefit. Changing my RSMD stuff to DMD stuff now... – twodayslate Apr 21 '10 at 18:44
Getting [Microsoft][ODBC Driver Manager] Driver does not support this function for a lot of things... but oh well :\ – twodayslate Apr 27 '10 at 14:00
The ODBC bridge driver is indeed a pain in the ass. You can either go for HXTT JDBC driver (costs $$$ tho) or replace MSAccess by a real DB server which ships with decent (and free) JDBC drivers. – BalusC Apr 27 '10 at 14:06
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.