Sqlite operations sometimes doesn't work

Sometimes simple operations like insert, update, delete and select doesnt work anyway. Same operations work by evening or next day. Why is it so? It is server problem or my side problem. Same operations works in different pc which are in same network (same router). Only I am facing this problem or any other had same issue. What will be the possible solution. Our project deadline is slipping because of this problem. Please let me know does anyone got solution for this problem

It would really help if you provided a screenshot of your relevant blocks, so we can see what you are trying to do, and where the problem may be.

To get an image of your blocks, right click in the Blocks Editor and select “Download Blocks as Image”. You might want to use an image editor to crop etc. if required. Then post it here in the community.

Taifun

1 Like

here are the blocks

which blocks do you execute and in which sequence to get that issue?
you might want to add a global variable to know, which action you are executing
for example before creating the table use a global variable action and set it to CREATE
later after the query has been executed, use that global variable again like this

if action = "CREATE"
then do something you like to do after creating the table
else if action = "SELECT"
then do something you like to do after selecting the customers

Taifun

This post was flagged by the community and is temporarily hidden.