summaryrefslogtreecommitdiffstats
path: root/src/sql/kernel/qsqldriverplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sql/kernel/qsqldriverplugin.cpp')
-rw-r--r--src/sql/kernel/qsqldriverplugin.cpp20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/sql/kernel/qsqldriverplugin.cpp b/src/sql/kernel/qsqldriverplugin.cpp
index ea28ba2aa1..34772222f9 100644
--- a/src/sql/kernel/qsqldriverplugin.cpp
+++ b/src/sql/kernel/qsqldriverplugin.cpp
@@ -55,24 +55,20 @@ QT_BEGIN_NAMESPACE
dynamically by Qt.
Writing a SQL plugin is achieved by subclassing this base class,
- reimplementing the pure virtual functions keys() and create(), and
- exporting the class with the Q_EXPORT_PLUGIN2() macro. See the SQL
+ reimplementing the pure virtual function create(), and
+ exporting the class with the Q_PLUGIN_METADATA() macro. See the SQL
plugins that come with Qt for example implementations (in the
\c{plugins/src/sqldrivers} subdirectory of the source
distribution).
- \sa {How to Create Qt Plugins}
-*/
-
-/*!
- \fn QStringList QSqlDriverPlugin::keys() const
-
- Returns the list of drivers (keys) this plugin supports.
+ The json file containing the metadata for the plugin contains a list of
+ keys indicating the supported sql drivers
- These keys are usually the class names of the custom drivers that
- are implemented in the plugin.
+ \code
+ { "Keys": [ "mysqldriver" ] }
+ \endcode
- \sa create()
+ \sa {How to Create Qt Plugins}
*/
/*!