Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings/Column"

m
Line 1: Line 1:
 +
{{EclipseLink_UserGuide
 +
|info=y
 +
|toc=n}}
 +
 +
THIS PAGE IS IN PROGRESS...
 +
 
=@Column=
 
=@Column=
  
 +
Use the Column annotation to specify a mapped column for a persistent property or field.
 +
 +
.{{EclipseLink_Spec
 +
|section=Section 1.1.p "Column Annotation"}}
 +
 +
 +
The following  example shows how to use the <tt>@Column</tt> annotation to ....
 +
 +
 +
 +
''''' Usage of the @Column Annotation'''''
 +
<source lang="java">
 +
@Column
 +
...
 +
</source>
  
 
{{EclipseLink_JPA
 
{{EclipseLink_JPA

Revision as of 13:32, 14 February 2011


Eclipselink-logo.gif
EclipseLink
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source


THIS PAGE IS IN PROGRESS...

@Column

Use the Column annotation to specify a mapped column for a persistent property or field.

.
Elug javaspec icon.gif

For more information, see Section 1.1.p "Column Annotation" in the JPA Specification.


The following example shows how to use the @Column annotation to ....


Usage of the @Column Annotation

 @Column
...

Eclipselink-logo.gif
Version: DRAFT
Other versions...

Back to the top