Type mapping

Currently QxEntityEditor maps SQL int/integer and long attributes to C++ long. This is not a good solution, since its length is platform dependent and hence not portable. For this exact reason also QVariant has no intrinsic support for it.
I think that "long" variables should be avoided as much as possible in favour of "int", "qint64", "long long" etc.
I think that "long" variables should be avoided as much as possible in favour of "int", "qint64", "long long" etc.