Hap Olsen

Greenhorn
+ Follow
since Mar 26, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Hap Olsen

Great, thanks. Just what I was hoping to hear.
One word of caution. Use a sequence for your primary key not just max + 1. This will avoid many potential problems you might have.

ie something like

INSERT into tablename (colname) values (sequence.NEXTVAL)

Hap
I'm new to Ajax but I want to incorporate it into the projects I'm working on. These projects use several custom tags is there anything special I need to know to use them with Ajax? Will the tags be reinterpreted or do I need to do something else?

Hap