You are not logged in.
Pages: 1
Is there a way to suppress ID generation? We are using MS SQL and would like to have the engine handle the ID generation using identity increment.
Offline
There is currently only one generic way of creating ID generation on client side.
It is very efficient, e.g. when running in BATCH mode.
There is no standard way of generating IDs among RDBMS.
For instance, Oracle and MS SQL have a very diverse way of creating such IDs.
See e.g. http://stackoverflow.com/questions/11296361
How do you think we may implement it?
Offline
Pages: 1