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
so that you can specify how you want the results to be transformed for your use. There are a few supplied (list-row-reader as here, and there are more), but you can also create and provide your own.
I was disappointed to see that in cl-dbi this functionality is not utilized. In execute-using-connection the call to exec-prepared has an inline hard-coded row-reader implementation.
I'd like to request this be changed so that the row-reader is user-settable.
I might actually take a stab at creating a pull request for this, but time at the moment is short...
The text was updated successfully, but these errors were encountered:
It's not exactly the same, but now dbi:fetch has a :format argument to specify the type of each row.
It must be one of :plist, :alist, :hash-table, and :values.
In cl-postgres you can do
so that you can specify how you want the results to be transformed for your use. There are a few supplied (
list-row-reader
as here, and there are more), but you can also create and provide your own.I was disappointed to see that in cl-dbi this functionality is not utilized. In
execute-using-connection
the call toexec-prepared
has an inline hard-coded row-reader implementation.I'd like to request this be changed so that the row-reader is user-settable.
I might actually take a stab at creating a pull request for this, but time at the moment is short...
The text was updated successfully, but these errors were encountered: