I am in a terrible situation where I need to support several access databases. These access databases are all in the same folder, but the application is in a different folder. Using a config file the location of the database is set (like C:\data). I have configured one sessionfactory for all databases and use schema to identify the database (schema="C:\data\database1.mdb") Select statements work perfectly, I get select * from C:\data \database1.mdb.MyTable.
but when I want to insert something into MyTable it will result in a not functioning query: INSERT INTO C?\data\database1.mdb.MyTable (...) VALUES(...) so the : is replaced by a ?. Any idea how this could be solved?
-- You received this message because you are subscribed to the Google Groups "NHibernate Contrib - Development Group" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhcdevs?hl=en.
