[Interest] Sharing enums between ActiveQt classes

2014-04-21 Thread S R
Hi. I am having trouble using the same enum in multiple classes with ActiveQt. 1. If I define the enum (TestEnum) in class QClass1, properties and slots in class QClass1 that use TestEnum work well. a) I define the enum TestEnum publicly in class QA. b ) Then, I include Q_ENUMS(TestEnum) to re

Re: [Interest] Long running application with database connection

2013-10-09 Thread S R
In a similar situation, if I recall correctly, we elected to open the database connection each time we needed it. Through testing we found that connection pooling in the the underlying infrastructure (windows, using oracle and ms sqlserver) worked well. The reconnection cost was usually trivial c