zeroshade commented on code in PR #3370:
URL: https://github.com/apache/arrow-adbc/pull/3370#discussion_r2310363900


##########
java/driver/jni/src/main/java/org/apache/arrow/adbc/driver/jni/impl/NativeAdbc.java:
##########
@@ -37,4 +37,12 @@ static native NativeDatabaseHandle openDatabase(int version, 
String[] parameters
   static native NativeQueryResult statementExecuteQuery(long handle) throws 
AdbcException;
 
   static native void statementSetSqlQuery(long handle, String query) throws 
AdbcException;
+
+  static native void statementBind(long handle, long values, long schema) 
throws AdbcException;
+
+  // TODO(lidavidm): we need a way to bind an ArrowReader (or some other 
suitable interface that
+  // doesn't exist in arrow-java; see the discussion around the Avro reader 
about how ArrowReader

Review Comment:
   can we link to the discussion you're referencing here?



-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to