Qt SQL Classes
This chapter gives a general introduction to the capabilities of Qt's SQL classes, using MySQL as an example back end.
18.1 |
Introduction to MySQL |
424 |
18.2 |
Queries and Result Sets |
427 |
18.3 |
Database Models |
429 |
Qt 4 provides a platform-neutral database interface similar to JDBC but without the annoying mandatory exception-handling code. You can use Qt to connect to a variety of different SQL databases, including Oracle, PostgreSQL, and SybaseSQL. In the examples that follow, we use MySQL[1] because it
[1] http://dev.mysql.com/doc/
- Is open source
- Is available on all platforms
- Comes pre-installed on most Linux distributions
- Has excellent documentation
- Is very widely used
Introduction to MySQL
|