Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

FM for SQL Select

Former Member
0 Likes
821

Good afternoon.

Prompt, whether is FM c which help it was possible to receive a data set, command SELECT?

I know is DB_EXECUTE_SQL, but it fulfils all DML operations, except SELECT.

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
614

Check the function group SDBI_DYNSQL , RSDU_SQL & SDBI_SQL

Read only

Former Member
0 Likes
614

I am not good in ADBC interfaces ,but you can check for below classes and package SDB_ADBC.

CL_SQL_METADATA->GET_CONNECTION  " used to get underlying connection depending on DB
CL_SQL_STATEMENT->EXECUTE_QUERY  "use the connection to get data

Please go thru ADBC documentation.

Thanks