IntelliJ open source
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Win a copy of Flex 4 in Action this week in the Flex forum!
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » JDBC
 
RSS feed
 
New topic
Author

JavaDb creating table error

Samanthi perera
Ranch Hand

Joined: Jan 08, 2010
Messages: 319

this is my first tsble


i have created this tasble on JavaDb

when i am going to creat the next table it gives error
this is the next table script



here is the eror


screenshot is here

http://4.bp.blogspot.com/_bpkZ2BsqXug/S21OLQkrVUI/AAAAAAAAAF0/i2rOxn4pHJA/s1600-h/db.gif
Herman Schelti
Ranch Hand

Joined: Jul 17, 2006
Messages: 385

hi,

see http://www.w3schools.com/SQl/sql_foreignkey.asp

just add a "," after
DEPT_ID" INTEGER



1. CREATE TABLE "Student" (
2. "ID" INTEGER not null primary key,
3. "NAME" VARCHAR(30),
4. "DEPT_ID" INTEGER,
5. FOREIGN KEY (DEPT_ID) REFERENCES DEPARTMENT(DEPT_ID)
6. );
Samanthi perera
Ranch Hand

Joined: Jan 08, 2010
Messages: 319

Now i have inserting data to table

http://1.bp.blogspot.com/_bpkZ2BsqXug/S217oetgpFI/AAAAAAAAAF8/bpl8RBPqwXw/s1600-h/db.bmp

http://2.bp.blogspot.com/_bpkZ2BsqXug/S219cnKYOiI/AAAAAAAAAGE/hKaAN_rq1LE/s1600-h/db2.GIF

what is this error?
Herman Schelti
Ranch Hand

Joined: Jul 17, 2006
Messages: 385

Now i have inserting data to table


No, you are "nserting" ....
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » JDBC
 
RSS feed
 
New topic
IntelliJ open source

.