From: Michael D. <mik...@us...> - 2004-08-25 03:58:17
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6732/NHibernate Modified Files: NHibernate-1.1.csproj NHibernate.cs Log Message: Added types to help MsSql with image & ntext fields in the database. Index: NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** NHibernate-1.1.csproj 23 Aug 2004 13:15:36 -0000 1.41 --- NHibernate-1.1.csproj 25 Aug 2004 03:58:08 -0000 1.42 *************** *** 1559,1562 **** --- 1559,1567 ---- /> <File + RelPath = "SqlTypes\BinaryBlobSqlType.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "SqlTypes\BinarySqlType.cs" SubType = "Code" *************** *** 1634,1637 **** --- 1639,1647 ---- /> <File + RelPath = "SqlTypes\StringClobSqlType.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "SqlTypes\StringFixedLengthSqlType.cs" SubType = "Code" *************** *** 1699,1702 **** --- 1709,1717 ---- /> <File + RelPath = "Type\BinaryBlobType.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Type\BinaryType.cs" SubType = "Code" *************** *** 1928,1931 **** --- 1943,1951 ---- /> <File + RelPath = "Type\StringClobType.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Type\StringType.cs" SubType = "Code" Index: NHibernate.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.cs,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** NHibernate.cs 21 Aug 2004 16:37:32 -0000 1.20 --- NHibernate.cs 25 Aug 2004 03:58:08 -0000 1.21 *************** *** 27,30 **** --- 27,35 ---- /// <summary> + /// NHibernate binary blob type + /// </summary> + public static readonly NullableType BinaryBlob = new BinaryBlobType(); + + /// <summary> /// NHibernate boolean type /// </summary> *************** *** 42,46 **** /// <summary> ! /// NHibernate CultureInfo type /// </summary> public static readonly NullableType CultureInfo = new CultureInfoType(); --- 47,51 ---- /// <summary> ! /// NHibernate clob type /// </summary> public static readonly NullableType CultureInfo = new CultureInfoType(); *************** *** 97,100 **** --- 102,110 ---- /// <summary> + /// NHibernate string clob type + /// </summary> + public static readonly NullableType StringClob = new StringClobType(); + + /// <summary> /// NHibernate Time type /// </summary> |