Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Linux Archive
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-04-2007, 07:18 AM
Senior Member
 
Join Date: Jun 2007
Posts: 114
Albert is on a distinguished road
How to create auto-increment
Hello, i'm a new coder here and totally a beginner programmer especially in JSP.
I have a problem how to create auto-increment process in database and also in JSP.
Could any one here give me some example and step how to create it?

Thank You.

Albert
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-04-2007, 07:21 AM
Member
 
Join Date: Jun 2007
Posts: 92
Marcus is on a distinguished road
Auto-increment is usually implemented at the database layer.

For example, if we have a table in MySQL and it is define as:

Code:
table users { id int(13) not null auto_increment, name varchar( 45 ) not null default '', email varchar( 55 ) not null default '', website varchar( 100 ) not null default '', primary key( id ) }
As you can see from the above definition, the "id" should be automatically incremented by the database.

The above statement can be executed the same way outside, or inside a JSP page.

If you are not sure about JDBC and how it works, here is a good tutorial that demonstrates JDBC connections, data manipulations etc.

Greetings

Marcus
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 07-04-2007, 07:23 AM
Senior Member
 
Join Date: Jun 2007
Posts: 114
Albert is on a distinguished road
How about if the table already exist? It is necessary to create again the table?
And how about sequence and triggers?
Help me, please.

Thanks

Albert
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Increment a Variable rhm54 New To Java 2 06-14-2008 04:57 AM
Auto Update Function abiieez New To Java 4 04-16-2008 06:17 PM
Object ArrayList - increment solution needed badly!! rugbyGeek New To Java 4 03-08-2008 02:47 AM
turn off auto compile bugger Eclipse 3 01-04-2008 10:12 PM


All times are GMT +3. The time now is 01:10 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org