pharo-rdbms / Pharo-SQLite3

Community-owned official SQLite3 binding for Pharo
MIT License
22 stars 20 forks source link

SQLite3Table use a properties dictionary #109

Closed vonbecmann closed 9 months ago

vonbecmann commented 9 months ago

why SQLite3Table use a properties dictionary? instead use instance variables

astares commented 9 months ago

Having an explicit ivar "properties" dictionary makes it more clear that these are the (external) sqlite properties of the table (compared to other ivars).

No need to change that.