package org.hibernate.dialect;
An abstract base class for Sybase and MS SQL Server dialects.
return "select @@identity";
return "identity not null";
return insertSQL + "\nselect @@identity";
return tableName + " holdlock";
int start = -1, end = -1;
int position = sql.indexOf( " " + alias + " " );
position = sql.indexOf( " " + alias + "," );
start = position + correction + 1;
buffer.replace( start, end, lockHint );
boolean isResultSet = ps.execute();
return "select getdate()";
return "#" + baseTableName;