We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b1d3a7 commit dc855fdCopy full SHA for dc855fd
v3/integrations/nroci/example/oci-go-sdk/main.go
@@ -65,17 +65,13 @@ func main() {
65
Statement: &statement,
66
},
67
}
68
- putRes, err := configWrapper.UpdateRow(ctx, &nroci.NoSQLClientRequestWrapper[nosql.UpdateRowRequest]{
69
- ClientRequest: putReq,
70
- })
+ putRes, err := configWrapper.UpdateRow(ctx, putReq)
71
if err != nil {
72
panic(err)
73
74
fmt.Printf("UpdateRow row: %v\nresult\n", putRes)
75
76
- queryRes, err := configWrapper.Query(ctx, &nroci.NoSQLClientRequestWrapper[nosql.QueryRequest]{
77
- ClientRequest: queryReq,
78
+ queryRes, err := configWrapper.Query(ctx, queryReq)
79
80
81
0 commit comments