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
First wanted to say thanks for the hard work that goes into this package. Packaging the entire driver into Go has made distribution of our application so much easier, so we really appreciate the time you have put in.
I am running into an issue with Named Args being passed Positionally, where I believe I am following the correct syntax. Some support would be greatly appreciated
Here is a really simplified example of what I am trying to accomplish:
The Expectation would be that aVar would contain a and bVar would contain b. In practice, however, this fmt.Printf prints aVar: b, bVar: a, meaning that the variables were passed positionally, (see in the example that bVar is first).
Please let me know if there is anything I am missing here. This is withDatabase Version: 19.0.0.0.0
Thank you!
The text was updated successfully, but these errors were encountered:
It seems my project was using an old version, which seeing your response prompted me to double check. After updating, this is working as intended. Thank you for testing with me and apologies for my ignorance.
Hello,
First wanted to say thanks for the hard work that goes into this package. Packaging the entire driver into Go has made distribution of our application so much easier, so we really appreciate the time you have put in.
I am running into an issue with Named Args being passed Positionally, where I believe I am following the correct syntax. Some support would be greatly appreciated
Here is a really simplified example of what I am trying to accomplish:
The Expectation would be that
aVar
would containa
andbVar
would containb
. In practice, however, thisfmt.Printf
printsaVar: b, bVar: a
, meaning that the variables were passed positionally, (see in the example thatbVar
is first).Please let me know if there is anything I am missing here. This is with
Database Version: 19.0.0.0.0
Thank you!
The text was updated successfully, but these errors were encountered: