RPAraujo commented on issue #37737:
URL: https://github.com/apache/arrow/issues/37737#issuecomment-1725060126

   Changed to the ADBC driver:
   ```
   db, err := sql.Open("flightsql", fmt.Sprintf("uri=grpc://%s:%s", svc.Host, 
svc.Port))
        if err != nil {
                log.Fatalf("open failed: %v", err)
        }
        defer db.Close()
   
        stmt, err := db.Prepare(query)
        if err != nil {
                log.Fatalf("query failed: %s", err)
        }
   ```
   
   And I still got the same error:
   `"msg":"query failed: Invalid Argument: SqlState: 
\u0000\u0000\u0000\u0000\u0000, msg: [FlightSQL] SQL error: 
ParserError(\"Expected identifier, found: $1\") (InvalidArgument; Prepare)"`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to