Constant WITHOUT_ROWID
Source pub const WITHOUT_ROWID: TableMarker;
Expand description
Enables WITHOUT ROWID optimization for the table.
§Example
ⓘ#[SQLiteTable(without_rowid)]
struct KeyValue {
#[column(primary)]
key: String,
value: String,
}
Requires an explicit PRIMARY KEY.
See: https://sqlite.org/withoutrowid.html