isAliasForRowId method

bool isAliasForRowId()

Whether this column is an alias for the rowid, as defined in https://www.sqlite.org/lang_createtable.html#rowid

To summarize, a column is an alias for the rowid if all of the following conditions are met:

Implementation

bool isAliasForRowId() {
  return _isAliasForRowId;
}