您的位置:首页 > 编程语言 > C语言/C++

qdjango - QDjango, a Qt-based C++ web framework - Google Project Hosting

2012-12-28 00:04 597 查看
qdjango - QDjango, a Qt-based C++ web framework - Google Project Hosting

QDjango is a web framework written in C++ and built on top of the Qt library. Where possible it tries to follow django's API, hence its name. It is released under the terms of the GNU Lesser General Public License, version 2.1 or later.

A simple yet powerful Object Relation Mapper (ORM)

QDjango's object relation mapper builds upon Qt's Meta-Object System, so if you are familiar with Qt, you should feel right at home. QDjango's features include:

support for a wide range of database backends thanks to QtSql
creating and registering database models is easy using Qt's property system
performing queries using querysets
QDjango can create and drop database tables and indices for registered models
thread-aware access to the database
support for accessing your models from QtScript
You can learn more by reading the QDjango database API documentation.

An HTTP request / response framework

QDjango provides an HTTP request and response framework which allows you to build FastCGI applications or standalone web servers easily.

You can learn more by reading the QDjango HTTP API documentation.

Building QDjango

To build the project, run the following from your qdjango directory:

qmake
make
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐