Hi All,
I'm using a remote database to save my data, when I use SELECT In the Query I dont have any problem, because when the query is executed, all the table is rthather loaded or not, so I can reload all the table if it was not .
However, with the INSERT query, I am using a loop ( for) for each row of the table, the problem is some qeuries are sucessful and others are not so some cells are INSERTED into the remote database and others are not! it's a headache to know what are the data that were not sent to send them again!
My quetion is is there any method to INSERT all the table without a loop!
this is what i'm using:
Sub Fetch_Select
ExecuteRemoteQuery(SELECT......)
End Sub
Sub Fetch_INSERT
For i=0 To TableView1.Items.Size-1
ExecuteRemoteQuery(INSERT......)
Next
End Sub
this is the log error I have!
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE> 508 Resource Limit Is Reached</TITLE>
</HEAD><BODY>
<H1>Resource Limit Is Reached</H1>
The website is temporarily unable to service your request as it exceeded resource limit.
Please try again later.
</BODY></HTML>
I'm using a remote database to save my data, when I use SELECT In the Query I dont have any problem, because when the query is executed, all the table is rthather loaded or not, so I can reload all the table if it was not .
However, with the INSERT query, I am using a loop ( for) for each row of the table, the problem is some qeuries are sucessful and others are not so some cells are INSERTED into the remote database and others are not! it's a headache to know what are the data that were not sent to send them again!
My quetion is is there any method to INSERT all the table without a loop!
this is what i'm using:
Sub Fetch_Select
ExecuteRemoteQuery(SELECT......)
End Sub
Sub Fetch_INSERT
For i=0 To TableView1.Items.Size-1
ExecuteRemoteQuery(INSERT......)
Next
End Sub
this is the log error I have!
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE> 508 Resource Limit Is Reached</TITLE>
</HEAD><BODY>
<H1>Resource Limit Is Reached</H1>
The website is temporarily unable to service your request as it exceeded resource limit.
Please try again later.
</BODY></HTML>
Last edited: