From: Richard B. <rb...@us...> - 2005-04-06 06:34:30
|
Update of /cvsroot/jcframework/dotnet/Providers/AF_MaxDB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25386/Providers/AF_MaxDB Modified Files: AssemblyInfo.vb CMaxDBDatabase.vb Log Message: Fix for type mismatch error in GetObjectsToSave Handle exceptions thrown by user classes when performing object IValidation checks Add Assembly versioning to Providers Add AssemblyFileVersion to framework. Index: CMaxDBDatabase.vb =================================================================== RCS file: /cvsroot/jcframework/dotnet/Providers/AF_MaxDB/CMaxDBDatabase.vb,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- CMaxDBDatabase.vb 7 Feb 2005 07:37:37 -0000 1.1 +++ CMaxDBDatabase.vb 6 Apr 2005 06:34:22 -0000 1.2 @@ -25,4 +25,8 @@ Public Overrides Function useBracketsForJoins() As Boolean Return False End Function + + Public Overrides Function getClauseStringLimit() As String + Return "and rowno <=" + End Function End Class \ No newline at end of file Index: AssemblyInfo.vb =================================================================== RCS file: /cvsroot/jcframework/dotnet/Providers/AF_MaxDB/AssemblyInfo.vb,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- AssemblyInfo.vb 7 Feb 2005 07:37:37 -0000 1.1 +++ AssemblyInfo.vb 6 Apr 2005 06:34:22 -0000 1.2 @@ -29,4 +29,5 @@ ' You can specify all the values or you can default the Build and Revision Numbers ' by using the '*' as shown below: -<Assembly: AssemblyVersion("1.0.*")> +<Assembly: AssemblyVersion("2.1.0.0")> +<Assembly: AssemblyFileVersion("2.1.0.0")> |