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
In some software, such as for DB connectors (#30), we need to be able to specify a handler function for a given argument.
For example, in the case of DBI, the main handler is DBI::dbConnect, but the first argument drv requires an instance of driver, that can be instantiated using DBI::dbDriver(<drivername>). The software argument definition could be extended with such handler, here in that case DBI::dbDriver.
The software function getHandlerInstance should then be able to evaluate such argument handler.
The text was updated successfully, but these errors were encountered:
In some software, such as for DB connectors (#30), we need to be able to specify a handler function for a given argument.
For example, in the case of DBI, the main handler is
DBI::dbConnect
, but the first argumentdrv
requires an instance of driver, that can be instantiated usingDBI::dbDriver(<drivername>)
. The software argument definition could be extended with such handler, here in that caseDBI::dbDriver
.The software function
getHandlerInstance
should then be able to evaluate such argumenthandler
.The text was updated successfully, but these errors were encountered: