Hello,
Some people say to define a value (colume) as auto increment to increase the value in database is not good
because the database should operate it f.i increase the value userID in the bad way,where database do it automatically:
insert(x,y,z,.......)
They recommand to increase it by yourself
f.i. :
uID=getLastUserId()+1;
insert (uID,x,y,z,...)
what is better??
thanks
Some people say to define a value (colume) as auto increment to increase the value in database is not good
because the database should operate it f.i increase the value userID in the bad way,where database do it automatically:
insert(x,y,z,.......)
They recommand to increase it by yourself
f.i. :
uID=getLastUserId()+1;
insert (uID,x,y,z,...)
what is better??
thanks