[PHP] Re: Thread Safe?

2009-11-20 Thread Shawn McKenzie
David Stoltz wrote: > Forgot to ask: > > On the Windows download page, there are options like: > > VC9 Thread Safe > VC9 Non-Thread Safe > VC6 Thread Safe > ...etc > > What is the VC, and what is thread safe? > > Thanks! VC = Microsoft Visual C. 9 and 6 are the versions. http://en.wikipedia.o

RE: [PHP] Re: Thread safe

2002-05-28 Thread Scott Hurring
J Smith [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 27, 2002 12:49 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: Thread safe > > > > You could use a transaction block if your database supports > it, or just use > some sort of auto-numbering field, such as SERIAL i

[PHP] Re: Thread safe

2002-05-27 Thread J Smith
You could use a transaction block if your database supports it, or just use some sort of auto-numbering field, such as SERIAL in Postgres, auto_increment in MySQL, etc. Then you wouldn't have to worry about retrieving the next cno before inserting a new row. J R wrote: > Hi, > In java serv