PDA

View Full Version : Does the latest doc apply to the latest build ?


blega
11-17-2006, 05:23 PM
Hi guys,


I'm starting to use Spring.Data+Hibernate+Oracle ODP.
And I'm wondering whether the documentation available [1]
on the website is supposed to apply to the nightly builds.

If so, I noticed some discrepancies between sources
and documentation available on the web site.

Page [2] :
OracleODP-2.0 (aliased to System.DataAccess.Client)
should be
OracleODP-2.0 (aliased to Oracle.DataAccess.Client)
according to dbproviders.xml

In the sample 'Spring.Northwind.IntegrationTests', Dao.xml, there is
<object id="DbProvider" type="Spring.Data.Support.SqlProvider, Spring.Data" ...
should be According to the documentation [2] :
<d:dbProvider id="DbProvider"
provider="Oracle.DataAccess.Client" ...
(not sure about this one, but it makes sense)


Of course, I may have missed something.
I'm just starting with Spring.Data ;)

Keep up the good work,
Bertrand.

[1] : http://www.springframework.net/doc-latest/reference/html

[2] : http://www.springframework.net/doc-latest/reference/html/dbprovider.html

Mark Pollack
11-27-2006, 05:17 PM
Hi Bertrand,

Yes, the goal is to keep the docs in ./doc-latest up to date with the nightly builds. Thanks for being so thorough in reviewing them. I'll fix the docs with the mismatch in the alias. I'll also change the usage in 'Spring.Northwind.IntegrationTests', I thought I got rid of all those... apparently not.

Mark