Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/$%7Bsuccess?q=database&page=526&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 5568 results for "database"(1930ms)

sqlite_adminREADME.md1 match

@notclaytn•Updated 7 months ago
7It's currently super limited (no pagination, editing data, data-type specific viewers), and is just a couple dozens lines of code over a couple different vals. Forks encouraged! Just comment on the val if you add any features that you want to share.
8
9To use it on your own Val Town SQLite database, [fork it](https://www.val.town/v/stevekrouse/sqlite_admin/fork) to your account.
10
11It uses [basic authentication](https://www.val.town/v/pomdtr/basicAuth) with your [Val Town API Token](https://www.val.town/settings/api) as the password (leave the username field blank).

VALLEREADME.md1 match

@alanzou•Updated 7 months ago
1# VALL-E
2
3LLM code generation for vals! Make apps with a frontend, backend, and database.
4
5It's a bit of work to get this running, but it's worth it.

uptimeREADME.md1 match

@adarshhatkar•Updated 7 months ago
1# Uptime Checker & Status Page
2
3This is a free, hackable uptime/downtime monitor that sends you an email when the site doesn't return a 200. It also stores historical uptime and latency data in your Val Town SQLite, which is used to power a status page. It supports multiple URLs in the same database and status page.
4
5

VALLEREADME.md1 match

@kate•Updated 7 months ago
1# VALL-E
2
3LLM code generation for vals! Make apps with a frontend, backend, and database.
4
5It's a bit of work to get this running, but it's worth it.

VALLEDRAWREADME.md1 match

@kate•Updated 7 months ago
1# VALL-E-DRAW
2
3LLM code generation for vals, on a canvas! Make apps with a frontend, backend, and database.
4
5* First you need a working version of VALL-E. Follow the steps [here](https://www.val.town/v/janpaul123/VALLE).

sqliteExplorerAppREADME.md1 match

@robertbrook•Updated 7 months ago
30- [ ] add triggers to sidebar
31- [ ] add upload from SQL, CSV and JSON
32- [ ] add ability to connect to a non-val town Turso database
33- [x] fix wonky sidebar separator height problem (thanks to @stevekrouse)
34- [x] make result tables scrollable

uptimeREADME.md1 match

@vyatka•Updated 7 months ago
1# Uptime Checker & Status Page
2
3This is a free, hackable uptime/downtime monitor that sends you an email when the site doesn't return a 200. It also stores historical uptime and latency data in your Val Town SQLite, which is used to power a status page. It supports multiple URLs in the same database and status page.
4
5## Installation

sqliteExplorerAppREADME.md1 match

@molefrog•Updated 7 months ago
30- [ ] add triggers to sidebar
31- [ ] add upload from SQL, CSV and JSON
32- [ ] add ability to connect to a non-val town Turso database
33- [x] fix wonky sidebar separator height problem (thanks to @stevekrouse)
34- [x] make result tables scrollable

passionateBeigeButterflyREADME.md1 match

@stevekrouse•Updated 7 months ago
30- [ ] add triggers to sidebar
31- [ ] add upload from SQL, CSV and JSON
32- [ ] add ability to connect to a non-val town Turso database
33- [x] fix wonky sidebar separator height problem (thanks to @stevekrouse)
34- [x] make result tables scrollable

dobbymain.tsx9 matches

@yawnxyz•Updated 7 months ago
129 }
130
131 async createDatabase(): Promise<void> {
132 try {
133 const columnDefs = this.columns.map(col =>
182 }
183 } catch (error) {
184 console.error(`Error creating database '${this.dbName}':`, error);
185 throw error;
186 }
227 }
228
229 async deleteDatabase(): Promise<void> {
230 try {
231 // Drop the main table
237 }
238
239 console.log(`Database '${this.dbName}' and its FTS indexes have been deleted.`);
240 } catch (error) {
241 console.error(`Error deleting database '${this.dbName}':`, error);
242 throw error;
243 }
414}
415
416// New standalone function to drop any database
417export async function dropDatabase(dbName: string): Promise<void> {
418 try {
419 await sqlite.execute(`DROP TABLE IF EXISTS ${dbName}`);
420 console.log(`Database '${dbName}' has been deleted.`);
421 } catch (error) {
422 console.error(`Error deleting database '${dbName}':`, error);
423 throw error;
424 }

bookmarksDatabase

@s3thi•Updated 3 months ago

sqLiteDatabase1 file match

@ideofunk•Updated 6 months ago