Daniel López wrote: > Hi there, > > For some reason, I would like to be able inside Resin a datasource > implementation other than Resin's, C3P0 for example, and I have been > unable to find in the documentation how would one configure it. The > examples that I found use the <database> tag, which does not seem to > have an attribute to specify an implementation class for the DataSource. > > Is it possible at all? > You'd treat it as a generic bean. In Resin 4.0.x, it would be the
<c3p0:DataSourceImpl xmlns:c3p0="..."> ... </c3p0:DataSourceImpl> The <database> tag wouldn't make sense, because it's integrated with Resin's JCA/pooling code, which is what you're trying to replace. -- Scott > D. > ------------------------------------------- > Daniel Lopez Janariz ([email protected]) > ------------------------------------------- > > > _______________________________________________ > resin-interest mailing list > [email protected] > http://maillist.caucho.com/mailman/listinfo/resin-interest > > _______________________________________________ resin-interest mailing list [email protected] http://maillist.caucho.com/mailman/listinfo/resin-interest
