You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the execution of our application, we encountered a warning message that may indicate a misalignment with best practices in database interaction. The warning is as follows:
Warning message:
Don't need to call dbFetch() for statements, only for queries
This warning suggests that dbFetch() is being called in scenarios where it might not be necessary, potentially for statements that do not return a result set (e.g., INSERT, UPDATE, DELETE statements).
The text was updated successfully, but these errors were encountered:
During the execution of our application, we encountered a warning message that may indicate a misalignment with best practices in database interaction. The warning is as follows:
This warning suggests that
dbFetch()
is being called in scenarios where it might not be necessary, potentially for statements that do not return a result set (e.g., INSERT, UPDATE, DELETE statements).The text was updated successfully, but these errors were encountered: