This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
In a self written script I am accessing a SQL database to read data from a table and store them in Lotus documents. The access itself is okay so far as I am receiving data successfully BUT:
The result set is incomplete. According to the set conditions, I should receive about 2700 documents from the SQL server but I just receive the first 1542.
If I try to read the SQL table without any conditions as a test, I also just receive the first 1542 documents from the SQL table.
If I force to read 2000 lines from the SQL table ("For rows = 1 To 2000" instead of "For rows = 1 To result.NumRows"), it will give the first 1542 lines correctly and then the last value will be repeated again and again up to 2000.
I don't have any more idea. Any help will be appreciated, thank you.