mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
sql: use _rowid_ instead of rowid
This doesn't really solve the problem, but reduces the chance to have a nameclash with rowid, until we come up with something better we can't fully support tables with a column name _rowid_ but that should be very seldom
This commit is contained in:
@@ -57,7 +57,7 @@ bool Field::isInteger() const
|
||||
void Table::clear()
|
||||
{
|
||||
m_fields.clear();
|
||||
m_rowidColumn = "rowid";
|
||||
m_rowidColumn = "_rowid_";
|
||||
}
|
||||
|
||||
Table::~Table()
|
||||
|
||||
Reference in New Issue
Block a user