@@ -53,17 +53,17 @@ class Database
5353 *
5454 * Exception is thrown in case of error, then the Database object is NOT constructed.
5555 *
56- * @param[in] apFilename UTF-8 path/uri to the database file ("filename" sqlite3 parameter)
57- * @param[in] aFlags SQLITE_OPEN_READONLY/SQLITE_OPEN_READWRITE/SQLITE_OPEN_CREATE...
58- * @param[in] aTimeoutMs Amount of milliseconds to wait before returning SQLITE_BUSY (see setBusyTimeout())
59- * @param[in] apVfs UTF-8 name of custom VFS to use, or nullptr for sqlite3 default
56+ * @param[in] apFilename UTF-8 path/uri to the database file ("filename" sqlite3 parameter)
57+ * @param[in] aFlags SQLITE_OPEN_READONLY/SQLITE_OPEN_READWRITE/SQLITE_OPEN_CREATE...
58+ * @param[in] aBusyTimeoutMs Amount of milliseconds to wait before returning SQLITE_BUSY (see setBusyTimeout())
59+ * @param[in] apVfs UTF-8 name of custom VFS to use, or nullptr for sqlite3 default
6060 *
6161 * @throw SQLite::Exception in case of error
6262 */
6363 Database (const char * apFilename,
64- const int aFlags = SQLITE_OPEN_READONLY,
65- const int aTimeoutMs = 0 ,
66- const char * apVfs = NULL );
64+ const int aFlags = SQLITE_OPEN_READONLY,
65+ const int aBusyTimeoutMs = 0 ,
66+ const char * apVfs = NULL );
6767
6868 /* *
6969 * @brief Open the provided database UTF-8 filename.
@@ -75,17 +75,17 @@ class Database
7575 *
7676 * Exception is thrown in case of error, then the Database object is NOT constructed.
7777 *
78- * @param[in] aFilename UTF-8 path/uri to the database file ("filename" sqlite3 parameter)
79- * @param[in] aFlags SQLITE_OPEN_READONLY/SQLITE_OPEN_READWRITE/SQLITE_OPEN_CREATE...
80- * @param[in] aTimeoutMs Amount of milliseconds to wait before returning SQLITE_BUSY (see setBusyTimeout())
81- * @param[in] aVfs UTF-8 name of custom VFS to use, or empty string for sqlite3 default
78+ * @param[in] aFilename UTF-8 path/uri to the database file ("filename" sqlite3 parameter)
79+ * @param[in] aFlags SQLITE_OPEN_READONLY/SQLITE_OPEN_READWRITE/SQLITE_OPEN_CREATE...
80+ * @param[in] aBusyTimeoutMs Amount of milliseconds to wait before returning SQLITE_BUSY (see setBusyTimeout())
81+ * @param[in] aVfs UTF-8 name of custom VFS to use, or empty string for sqlite3 default
8282 *
8383 * @throw SQLite::Exception in case of error
8484 */
8585 Database (const std::string& aFilename,
86- const int aFlags = SQLITE_OPEN_READONLY,
87- const int aTimeoutMs = 0 ,
88- const std::string& aVfs = " " );
86+ const int aFlags = SQLITE_OPEN_READONLY,
87+ const int aBusyTimeoutMs = 0 ,
88+ const std::string& aVfs = " " );
8989
9090 /* *
9191 * @brief Close the SQLite database connection.
@@ -106,11 +106,11 @@ class Database
106106 * Reading the value of timeout for current connection can be done with SQL query "PRAGMA busy_timeout;".
107107 * Default busy timeout is 0ms.
108108 *
109- * @param[in] aTimeoutMs Amount of milliseconds to wait before returning SQLITE_BUSY
109+ * @param[in] aBusyTimeoutMs Amount of milliseconds to wait before returning SQLITE_BUSY
110110 *
111111 * @throw SQLite::Exception in case of error
112112 */
113- void setBusyTimeout (const int aTimeoutMs ) noexcept ; // nothrow
113+ void setBusyTimeout (const int aBusyTimeoutMs ) noexcept ; // nothrow
114114
115115 /* *
116116 * @brief Shortcut to execute one or multiple statements without results.
0 commit comments