You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
http://aosabook.org/en/sqlalchemy.html
SQLALchemy has an abstract class called Dialect for which database specific implementations exists.
I feel that the same architecture could be applied to hand history parser class architecture.
Behind the scenes, the Engine references an object called a Dialect. The Dialect is an abstract class for which many implementations exist, each one targeted at a specific DBAPI/database combination. A Connection created on behalf of the Engine will refer to this Dialect for all decisions, which may have varied behaviors depending on the target DBAPI and database in use.
The text was updated successfully, but these errors were encountered:
http://aosabook.org/en/sqlalchemy.html
SQLALchemy has an abstract class called
Dialect
for which database specific implementations exists.I feel that the same architecture could be applied to hand history parser class architecture.
The text was updated successfully, but these errors were encountered: