vote up 0 vote down star

I'm using NHibernate to connect to an ERP database on our DB2 server. We have a test schema and a production schema. Both schemas have the same table structure underneath. For testing, I would like to use the same mapping classes but point NHibernate to the test environment when needed and then back when in production. Please keep in mind that we have many production schemas and each production schema has an equivalent test schema.

I know that my XML mapping file has a schema property inside it, but since it's in XML, it's not like I can change it via a compiler directive or change the schema property based on a config file.

Any ideas?

Thank You.

flag

69% accept rate

3 Answers

vote up 0 vote down check

To get what I wanted, I had to use NHibernate.Mapping.Attributes.

[NHibernate.Mapping.Attributes.Class(0, Table = “MyTable”, Schema = MySchemaConfiguration.MySchema)]

In this way, I can create a class like MySchemaConfiguration and have a property inside of it like MySchema. I can either set the property's value via a compiler directive or get it through a configuration file. This way I only have to change the schema in one place and it will be reflected throughout all of the other mappings.

link|flag
vote up 0 vote down

Take a look at SchemaUpdate.

http://blogs.hibernatingrhinos.com/nhibernate/archive/2008/04/28/create-and-update-database-schema.aspx

link|flag
err I suppose that's not exactly what he meant :) – zvolkov Oct 30 at 1:25
could have helped, ya never know :) – zowens Oct 30 at 3:10
vote up 1 vote down

No need to specify schema in the mappings: there's a SessionFactory-level setting called default_schema. However, you can't change it at runtime, as NHibernate pregenerates and/or caches SQL queries, including the schema part.

link|flag
2  
exactly, so the solution is: build another session factory. – Mauricio Scheffer Oct 29 at 22:59
ahh, good point Mauricio – zvolkov Oct 29 at 23:53
Thanks for the reply. Based on your info, I don't think I have a choice but to keep the schema info inside the mapping file and change it when I'm done with testing. I have at least two production schemas so setting a default schema in the factory would require a factory for every schema, or having the schema property set for some mappings but not others. I've read that factories are heavy and to avoid more than one so I think I'm left with changing just the schema properties in the mapping files. I wish I could create a mapping interface and override just the property instead. Thanks Again. – Brian Oct 30 at 12:42
Factories are expensive to create at run time, but not so expensive to keep around. I don't understand how you plan on changing mappings at run time (as alternative to just using the other factory) – zvolkov Oct 30 at 13:08
I was giving up on the idea of changing the schemas at run-time and instead thought that I would just declare the schema in the mapping file. Is that feasible? Per your suggestion, if I have two different factories based on two different schemas, can I still do a join between two tables from the different schemas or have a master/detail relationship? – Brian Oct 30 at 13:41
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.