If I start using `Stored Procedures` for all possi...
# help
m
If I start using
Stored Procedures
for all possible queries in my app and stop using designated querying methods, would it matter? Especially in terms of time to load the data.
n
Hello @Muezz! This thread has been automatically created from your message in #843999948717555735 a ``few seconds ago``. Pinging @User so that they see this as well! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ... menu) and select Leave Thread to unsubscribe from future updates. Want to change the title? Use the
/title
command! We have solved your problem? Click the button below to archive it.
g
Not sure what "designated querying methods" means. A single RPC call that does multiple data base operations will save extra network round trip time versus doing separate query calls.
n
wubba_lubba_whatever (2022-04-14)
m
By "designated querying methods" all I meant were the language specific querying methods/functions designated by Supabase. Like I could make a simple query either via
supabaseClient.rpc('function_name')
of via the query methods of the framework I am working in.