
QxOrm
Homepage
Source (link to git-repo or to original if based on someone elses unmodified work):
* Persistence (based on QtSql Qt module)
* Serialization (XML and binary, based on boost::serialization)
* Reflection or Introspection (invoke class methods and access to properties)
QxOrm has been tested on Windows (Visual C++ 2008, 2012 and MinGW), Linux (GCC) and Mac OS X (Clang).
QxOrm is based on a simple and non intrusive setting function (that can be compared with Hibernate XML mapping file).
A quick sample (and a tutorial) is available on this web site : http://www.qxorm.com
A user guide (manual) is also available here : http://www.qxorm.com/qxorm_en/manual.html
QxOrm has been accepted into the Qt Ambassador Program : http://qt.digia.com/qtambassador/
QxOrm 1.4.3 released : support CMake
- Support CMake : new CMakeLists.txt file added to build QxOrm library with CMake
- Improve SQL error messages when qx::dao functions return a database error
- New parameter in singleton class qx::QxSqlDatabase to log SQL bound values (setTraceSqlBoundValues) : by default, bound values are logged when an error occurred
- New syntax to select columns to not fetch : -{ col_1, col_2, etc... }
- New function qx::dao::call_query_without_prepare() to execute specific SQL queries without prepared statement
- Improve QxModelView module : all QxOrm models (based on qx::IxModel interface) can be serialized to JSON format (including all relationships levels) : this is now another way to work with relationships and QML (thanks to JSON.parse() and JSON.stringify() javascript functions) without using nested models concept (so without using QxEntityEditor model/view generated classes)
- Improve qxBlogModelView sample project and QxOrm manual to show how to access to relationships data in QML (nested models or JSON)
- Fix a memory leak in qx::QxSqlRelation class
- Reduce output binary size (~20%) and compilation times (~20%) to build persistent classes based on QxOrm library
- Support unity build concept to reduce compilation times to build QxOrm library and C++ persistent classes generated by QxEntityEditor application : for more details, see _QX_UNITY_BUILD compilation option in QxOrm.pri or QxOrm.cmake configuration file
- Improve QxConvert module : possibility to store in database complex QVariant properties which contain QVariantMap, QVariantHash or QVariantList types (JSON format)
- Fix an issue with some databases when a foreign key is also a part of the primary key
- Fix an issue with QSharedPointer and boost::serialization when a same raw pointer is shared by several QSharedPointer during deserialization process
Ratings & Comments
0 Comments