2013-07-19 03:47:55 +00:00
|
|
|
|
namespace Marr.Data.QGen.Dialects
|
2013-03-30 21:56:34 +00:00
|
|
|
|
{
|
|
|
|
|
public class SqlServerCeDialect : Dialect
|
|
|
|
|
{
|
|
|
|
|
public override string IdentityQuery
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return "SELECT @@IDENTITY;";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool SupportsBatchQueries
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|