11
11
import org .postgresql .*;
12
12
import org .postgresql .util .*;
13
13
14
- /*
14
+ /**
15
15
* A ResultSetMetaData object can be used to find out about the types and
16
16
* properties of the columns in a ResultSet
17
17
*
@@ -403,7 +403,7 @@ public String getColumnTypeName(int column) throws SQLException
403
403
return getField (column ).getPGType ();
404
404
}
405
405
406
- /*
406
+ /**
407
407
* Is the column definitely not writable? In reality, we would
408
408
* have to check the GRANT/REVOKE stuff for this to be effective,
409
409
* and I haven't really looked into that yet, so this will get
@@ -418,7 +418,7 @@ public boolean isReadOnly(int column) throws SQLException
418
418
return false ;
419
419
}
420
420
421
- /*
421
+ /**
422
422
* Is it possible for a write on the column to succeed? Again, we
423
423
* would in reality have to check the GRANT/REVOKE stuff, which
424
424
* I haven't worked with as yet. However, if it isn't ReadOnly, then
@@ -433,7 +433,7 @@ public boolean isWritable(int column) throws SQLException
433
433
return !isReadOnly (column );
434
434
}
435
435
436
- /*
436
+ /**
437
437
* Will a write on this column definately succeed? Hmmm...this
438
438
* is a bad one, since the two preceding functions have not been
439
439
* really defined. I cannot tell is the short answer. I thus
@@ -452,7 +452,7 @@ public boolean isDefinitelyWritable(int column) throws SQLException
452
452
// END OF PUBLIC INTERFACE
453
453
// ********************************************************
454
454
455
- /*
455
+ /**
456
456
* For several routines in this package, we need to convert
457
457
* a columnIndex into a Field[] descriptor. Rather than do
458
458
* the same code several times, here it is.
@@ -533,6 +533,6 @@ public String getColumnClassName(int column) throws SQLException
533
533
default :
534
534
throw org .postgresql .Driver .notImplemented ();
535
535
}
536
-
536
+ }
537
537
}
538
538
0 commit comments