From: Michael D. <mik...@us...> - 2004-04-30 18:39:56
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10155 Modified Files: NHibernate-1.1.csproj NHibernate.cs Log Message: Added AnsiStringType so there could be a mapping to a varchar column. Index: NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** NHibernate-1.1.csproj 30 Apr 2004 13:10:17 -0000 1.22 --- NHibernate-1.1.csproj 30 Apr 2004 18:39:47 -0000 1.23 *************** *** 1549,1552 **** --- 1549,1557 ---- /> <File + RelPath = "Type\AnsiStringType.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Type\ArrayType.cs" SubType = "Code" Index: NHibernate.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.cs,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** NHibernate.cs 29 Apr 2004 14:00:51 -0000 1.17 --- NHibernate.cs 30 Apr 2004 18:39:47 -0000 1.18 *************** *** 17,20 **** --- 17,25 ---- /// <summary> + /// NHibernate Ansi String type + /// </summary> + public static readonly NullableType AnsiString = TypeFactory.GetAnsiStringType(); + + /// <summary> /// NHibernate binary type /// </summary> *************** *** 97,106 **** /// <summary> ! /// NHibernate string type /// </summary> public static readonly NullableType String = TypeFactory.GetStringType(); /// <summary> ! /// NHibernate time type /// </summary> public static readonly NullableType Time = TypeFactory.GetTimeType(); --- 102,111 ---- /// <summary> ! /// NHibernate String type /// </summary> public static readonly NullableType String = TypeFactory.GetStringType(); /// <summary> ! /// NHibernate Time type /// </summary> public static readonly NullableType Time = TypeFactory.GetTimeType(); *************** *** 117,131 **** /// <summary> ! /// NHibernate timestamp type /// </summary> public static readonly NullableType Timestamp = TypeFactory.GetTimestampType(); //new TimestampType(); /// <summary> ! /// NHibernate true_false type /// </summary> public static readonly NullableType TrueFalse = TypeFactory.GetTrueFalseType(); /// <summary> ! /// NHibernate yes_no type /// </summary> public static readonly NullableType YesNo = TypeFactory.GetYesNoType(); --- 122,136 ---- /// <summary> ! /// NHibernate Timestamp type /// </summary> public static readonly NullableType Timestamp = TypeFactory.GetTimestampType(); //new TimestampType(); /// <summary> ! /// NHibernate TrueFalse type /// </summary> public static readonly NullableType TrueFalse = TypeFactory.GetTrueFalseType(); /// <summary> ! /// NHibernate YesNo type /// </summary> public static readonly NullableType YesNo = TypeFactory.GetYesNoType(); |