Skip to content

Commit

Permalink
drivers updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Jul 21, 2024
1 parent 5a66f86 commit 8df1d77
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions drivers/common/include/orm/drivers/sqlquery.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ namespace MySql
QList<QVariant> boundValues() const;

/* Result sets */
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
SqlRecord record(bool withDefaultValues = true) const;
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
const SqlRecord &recordCached(bool withDefaultValues = true) const;

/*! Retrieve the next record and position the cursor on it. */
Expand Down Expand Up @@ -192,7 +192,7 @@ namespace MySql

/* Result sets */
#ifdef TINYDRIVERS_MYSQL_DRIVER
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
SqlRecord recordAllColumns(bool withDefaultValues = true) const;
#endif

Expand Down
8 changes: 4 additions & 4 deletions drivers/common/include/orm/drivers/sqlresult.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ namespace Orm::Drivers
constexpr BindingSyntax bindingSyntax() const noexcept;

/* Result sets */
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
virtual SqlRecord record() const = 0;
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
virtual const SqlRecord &recordCached() const = 0;

/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
virtual SqlRecord recordWithDefaultValues(bool allColumns) const = 0;
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
virtual const SqlRecord &recordWithDefaultValuesCached() const = 0;

/*! Populate field values for the given record. */
Expand Down
8 changes: 4 additions & 4 deletions drivers/mysql/include/orm/drivers/mysql/mysqlresult.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ namespace Orm::Drivers::MySql
bool exec() final;

/* Result sets */
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
SqlRecord record() const final;
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
const SqlRecord &recordCached() const final;

/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
SqlRecord recordWithDefaultValues(bool allColumns) const final;
/*! Get a SqlRecord containing the field information for the current query. */
/*! Get a SqlRecord containing the field information for the current row. */
const SqlRecord &recordWithDefaultValuesCached() const final;

/*! Get the ID of the most recent inserted row. */
Expand Down

0 comments on commit 8df1d77

Please sign in to comment.