SAP ADBC QUERY ABEXA

Get Example source ABAP code based on a different SAP table
  


ARTIClE

ADBC, Query
This example demonstrates the execution of a query with ADBC.

ABAP_SOURCE_CODE
ABAP_EXEC

ABAP_DESCRIPTION
The method EXECUTE_QUERY from the class CL_SQL_STATEMENT is used to extract three columns of the database table SFLIGHT for the current client. An appropriate internal table is bound to the result set using the method SET_PARAM_TABLE of the class CL_SQL_RESULT_SET. Using the method NEXT_PACKAGE, all the rows of the result set are transported into the internal table.
Quotation marks are escaped in the user input. This prevents SQL injections.