Total members 11890 |It is currently Fri Apr 19, 2024 9:24 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





If you want to specify that a column can't take no value ( null ) ,you will need to add (nullable=false) attribute in the @Column annotation.

Code:

package com
.codemiles.jpa;

import java.util.Date;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.OneToOne;
import javax.persistence.PrimaryKeyJoinColumn;
import javax.persistence.Table;

@
Entity
@Table(name="BED")
public class Bed implements java.io.Serializable{
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    @Id
    private String Id
;
    private String type;
    private Date production_date;
    private String width;
    private String height;
    @OneToOne
    
@PrimaryKeyJoinColumn
    private Person person
;
    public String getId() {
        return Id;
    }
    public void setId(String id) {
        Id = id;
    }
     
    
@Column(name="TYPE" ,nullable=false)
    public String getType() {
        return type;
    }
    
    public void setType
(String type) {
        this.type = type;
    }
    @Column(name="PRODUCTION")
    public Date getProduction_date() {
        return production_date;
    }
    public void setProduction_date(Date production_date) {
        this.production_date = production_date;
    }
    @Column(name="WIDTH")
    public String getWidth() {
        return width;
    }
    public void setWidth(String width) {
        this.width = width;
    }
    @Column(name="HEIGHT")
    public String getHeight() {
        return height;
    }
    public void setHeight(String height) {
        this.height = height;
    }
    public void setPerson(Person person) {
    this.person = person;
    }
    public Person getPerson() {
    return person;
    }
    
    
}
 




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : column can't be null
 Frame with Null Layout- set layout NULL     -  
 Is null a keyword     -  
 NULL Data in table     -  
 Get column alias in php     -  
 Join Column by Primary Key     -  
 Get table column flag in php     -  
 Create auto numbered column in mysql query     -  



Topic Tags

Java JPA
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com