I want to implement how db manager (TOAD and OmniDB) used to fetch some row at the time of table data from oracle11g in C# (ODP.NET) and load it to DataTable, and use "Fetch More" to fetch another some row or "Fetch All" to fetch all row (it will take a long time)
I have read about OracleCommand.FetchSize or OracleDataAdapter.FetchSize, but still did'nt understand how to implement it
Like picture above, omniDB only get first 50 records (while TOAD get 500 first records) it was fast in load, when I look on Oracle Session Browser, the query not manipulate to add "LIMIT" or "OFFSET" clause (how could this happen)