View of /branches/taiga-0.1/ModularRex/NHibernate/MonoSqliteDriver.cs
Parent Directory
|
Revision Log
Revision 370 -
(download)
(annotate)
Tue Apr 27 10:41:58 2010 UTC (3 years ago) by mikkopa
File size: 707 byte(s)
Tue Apr 27 10:41:58 2010 UTC (3 years ago) by mikkopa
File size: 707 byte(s)
Created branch for Taiga 0.1 specific changes.
namespace NHibernate.Driver
{
public class MonoSqliteDriver : NHibernate.Driver.ReflectionBasedDriver
{
public MonoSqliteDriver() :
base("Mono.Data.SqliteClient",
"Mono.Data.SqliteClient.SqliteConnection",
"Mono.Data.SqliteClient.SqliteCommand")
{
}
public override bool UseNamedPrefixInParameter {
get {
return true;
}
}
public override bool UseNamedPrefixInSql {
get {
return true;
}
}
public override string NamedPrefix {
get {
return "@";
}
}
public override bool SupportsMultipleOpenReaders {
get {
return false;
}
}
}
}
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

