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
When I saving (inserting) data by beedb with go-oci8, always a error sql: statement expects 0 inputs; got 7.
This error throws in database/sql/sql.go, line:671 , I debugged found that is caused by the generated sql using ? as parameter placeholder but go-oci8 (based on oci) only supports which likes :p as placeholder.
The text was updated successfully, but these errors were encountered:
When I saving (inserting) data by beedb with go-oci8, always a error
sql: statement expects 0 inputs; got 7
.This error throws in database/sql/sql.go, line:671 , I debugged found that is caused by the generated sql using
?
as parameter placeholder but go-oci8 (based on oci) only supports which likes:p
as placeholder.The text was updated successfully, but these errors were encountered: