diff options
Diffstat (limited to 'app/sql/connection.h')
-rw-r--r-- | app/sql/connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/sql/connection.h b/app/sql/connection.h index 52587ac..e7c2a2d 100644 --- a/app/sql/connection.h +++ b/app/sql/connection.h @@ -143,12 +143,12 @@ class Connection { // Initialization ------------------------------------------------------------ // Initializes the SQL connection for the given file, returning true if the - // file could be opened. You can call this or OpenInMemory. + // file could be opened. You can call this or InitInMemory to initialize. bool Open(const FilePath& path); // Initializes the SQL connection for a temporary in-memory database. There // will be no associated file on disk, and the initial database will be - // empty. You can call this or Open. + // empty. You must call this or Init to open the database. bool OpenInMemory(); // Returns trie if the database has been successfully opened. |