Where Result set is stored while working with jdbc and oracle driver

后端 未结 4 1187
盖世英雄少女心
盖世英雄少女心 2021-01-04 09:27

Once I use jdbc with oracle driver and run select query is the result of the query is stored in the server of oracle memory or file system or temp table ?

and once I

4条回答
  •  轮回少年
    2021-01-04 10:01

    After you execute the query, the data is returned to the JVM. The JVM handles all the data I/O from that point.

提交回复
热议问题