Posts by Igor Boldt • 41 points
5 posts
-
0
votes2
answers182
viewsA: SELECT in N:N relationship without using INNER JOIN
It turned out that I didn’t even need the sub-query, because the following happens in Sphinx: I have a configuration file in which I put the SELECT in which it will do in the database to index the…
-
0
votes2
answers182
viewsQ: SELECT in N:N relationship without using INNER JOIN
I need an SQL equivalent to a SELECT using INNER JOIN as I am using Sphinxsearch and read that it does not support INNER JOIN. I know you can do it using Sub-Query but I can’t remember how you do…
-
2
votes1
answer174
viewsA: Return of async functions
I found out what was going on: In the archive AsyncStorage.js I had the function async with await of the return of storage, but in the App.js file I had a synchronous assignment, ie, it performed…
-
1
votes1
answer174
viewsQ: Return of async functions
I’m using the AsyncStorage to save the value of some tokens with the following code: Asyncstorage.js: import AsyncStorage from '@react-native-community/async-storage'; setValue = async (key, value)…
-
0
votes2
answers1622
viewsQ: Where are the application files in the Android Studio emulator
I’m using the Android Studio emulator to test an application, so I’m using Sqlite to save some data, I want to know where the application files are and where Sqlite records, it would just be a…