Hello, I have successfully port Django to OpenVMS and have start to build an Oracle/Rdb (http://www.oracle.com/rdb) backend.
A few questions: - can Django run in a cluster environnement (OpenVMS has a "shared everything" cluster design) , meaning running simultaneous Django server on different systems, so in different processes, or it is mandatory to run in a one-process/multi-threads environment. - I have noticed that some database access are done without call to the database operations start_transaction_sql() , so use an implicit database start transaction. Is it a bug? - Also transactions which do no change are not commited, it seem that it's feature but IMHO it's a bug. Some database systems execute select statement in a transaction context and may lock record to maintain consistency (depend on the isolation level setting) until you commit or rollback the transaction. I would be nice to have, at the end of the http request an commit to be sure to close the transaction and release any outstanding locks. - date field parameter use timestamp format instead of date format for example use '2008-01-01 00:00:00' instead of '2008-01-01' and integer parameter sometimes use string instead of int. Is it a feature or a bug? Tanks for any informations, Jean-François --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---