No matches found in projects.
Try switching to another result type using the tabs above.
You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/?q=database&page=1&format=json
For typeahead suggestions, use the /typeahead
endpoint:
https://codesearch.val.run/typeahead?q=database
Returns an array of strings in format "username" or "username/projectName"
Found 2773 results for "database"(493ms)
No matches found in projects.
Try switching to another result type using the tabs above.
46}
4748// Now it's time to upload things to database and blob storage
49// First, add to database, and get the ID
50const id = await sqlite.execute(
51`INSERT INTO ${TABLE_NAME} (title, data, type, time) VALUES ($title, $data, $type, CURRENT_TIMESTAMP)`,
126}
127128console.log(`Weather forecast updated in the database.`);
129return summary;
130}