in reply to Re: inserting new data into table
in thread inserting new data into table

Also, you could use "select MAX(ID) from TABLE", add one to this value, and manually increment like that.

Of course, you'll only do this with a table lock won't you? (assuming you don't have transactions (MySQL etc), or have AUTO_COMMIT on).

Otherwise imagine two INSERTs happening simultaneously ... someone else could quite happily come along and INSERT something else in between *your* SELECT and INSERT... leaving you with quite a nasty race condition.

Tony

Replies are listed 'Best First'.
Re: Re: Re: inserting new data into table
by tame1 (Pilgrim) on Jan 03, 2001 at 03:06 UTC
    Oh yeah - What Tony said ;-)

    What does this little button do . .<Click>; "USER HAS SIGNED OFF FOR THE DAY"