From 4624f3ecedc0a28d749be132bd68540736f21e53 Mon Sep 17 00:00:00 2001 From: TizianoT Date: Wed, 23 Jul 2025 10:23:10 +0200 Subject: [PATCH] changed sqliteclodu.io to sqlite.ai --- sqlite-cloud/knex-integration.mdx | 2 +- sqlite-cloud/platform/mcp-server.mdx | 2 +- sqlite-cloud/sdks/go/introduction.mdx | 2 +- sqlite-cloud/sdks/js/introduction.mdx | 4 ++-- sqlite-cloud/sdks/python/introduction.mdx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sqlite-cloud/knex-integration.mdx b/sqlite-cloud/knex-integration.mdx index 8407ed1..23568db 100644 --- a/sqlite-cloud/knex-integration.mdx +++ b/sqlite-cloud/knex-integration.mdx @@ -13,7 +13,7 @@ In this tutorial, we'll show you how to connect your TypeScript application to a **Prerequisites** - Node.js and npm installed on your system -- A SQLite Cloud account (you can sign up for a free account [here](https://sqlitecloud.io/register)) +- A SQLite Cloud account (you can sign up for a free account [here](https://dashboard.sqlitecloud.io/auth/sign-in)) 1. **How to connect** diff --git a/sqlite-cloud/platform/mcp-server.mdx b/sqlite-cloud/platform/mcp-server.mdx index 34818b7..e36c5f1 100644 --- a/sqlite-cloud/platform/mcp-server.mdx +++ b/sqlite-cloud/platform/mcp-server.mdx @@ -19,7 +19,7 @@ The [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) ## Getting Started -To use the MCP Server, create a [free account on SQLite Cloud](https://sqlitecloud.io) and obtain your **Connection String**. +To use the MCP Server, create a [free account on SQLite Cloud](https://dashboard.sqlitecloud.io/auth/sign-in) and obtain your **Connection String**. ### Requirements diff --git a/sqlite-cloud/sdks/go/introduction.mdx b/sqlite-cloud/sdks/go/introduction.mdx index 0171f51..c3f719c 100644 --- a/sqlite-cloud/sdks/go/introduction.mdx +++ b/sqlite-cloud/sdks/go/introduction.mdx @@ -91,5 +91,5 @@ The complete documentation is available at: [https://pkg.go.dev/github.com/sqlit [![GitHub Tag](https://img.shields.io/github/v/tag/sqlitecloud/sqlitecloud-go?label=version&link=https%3A%2F%2Fpkg.go.dev%2Fgithub.com%2Fsqlitecloud%2Fsqlitecloud-go)](https://pkg.go.dev/github.com/sqlitecloud/sqlitecloud-go) [![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/sqlitecloud/sqlitecloud-go?link=https%3A%2F%2Fpkg.go.dev%2Fgithub.com%2Fsqlitecloud%2Fsqlitecloud-go)](https://pkg.go.dev/github.com/sqlitecloud/sqlitecloud-go) -[SQLite Cloud](https://sqlitecloud.io) for Go is a powerful package that allows you to interact with the SQLite Cloud database seamlessly. It provides methods for various database operations. This package is designed to simplify database operations in Go applications, making it easier than ever to work with SQLite Cloud. In addition to the standard SQLite statements, several other [commands](https://docs.sqlitecloud.io/docs/commands) are supported. +[SQLite Cloud](https://sqlite.ai) for Go is a powerful package that allows you to interact with the SQLite Cloud database seamlessly. It provides methods for various database operations. This package is designed to simplify database operations in Go applications, making it easier than ever to work with SQLite Cloud. In addition to the standard SQLite statements, several other [commands](https://docs.sqlitecloud.io/docs/commands) are supported. diff --git a/sqlite-cloud/sdks/js/introduction.mdx b/sqlite-cloud/sdks/js/introduction.mdx index 3f6b7a4..a763b04 100644 --- a/sqlite-cloud/sdks/js/introduction.mdx +++ b/sqlite-cloud/sdks/js/introduction.mdx @@ -34,14 +34,14 @@ let results = await database.sql`SELECT * FROM tracks WHERE name = ${name}` Use [Database.sql](/docs/sqlite-cloud/sdks/js/classes/database#sql) to execute prepared statements or plain SQL queries asynchronously. This method returns an array of rows for SELECT queries and supports the standard syntax for UPDATE, INSERT, and DELETE. -We aim for full compatibility with the established [sqlite3 API](https://www.npmjs.com/package/sqlite3), with the primary distinction being that our driver connects to SQLiteCloud databases. This allows you to migrate your [SQLite to the cloud](https://sqlitecloud.io) while continuing to use your existing codebase. +We aim for full compatibility with the established [sqlite3 API](https://www.npmjs.com/package/sqlite3), with the primary distinction being that our driver connects to SQLiteCloud databases. This allows you to migrate your [SQLite to the cloud](https://sqlite.ai) while continuing to use your existing codebase. The package is developed entirely in TypeScript and is fully compatible with JavaScript. It doesn't require any native libraries. This makes it a straightforward and effective tool for managing cloud-based databases in a familiar SQLite environment. ## More How do I deploy SQLite in the cloud? -[https://sqlitecloud.io](https://sqlitecloud.io) +[https://sqlite.ai](https://sqlite.ai) How do I connect SQLite cloud with Javascript? [https://sqlitecloud.github.io/sqlitecloud-js/](https://sqlitecloud.github.io/sqlitecloud-js/) diff --git a/sqlite-cloud/sdks/python/introduction.mdx b/sqlite-cloud/sdks/python/introduction.mdx index ac362cd..7e8cb9b 100644 --- a/sqlite-cloud/sdks/python/introduction.mdx +++ b/sqlite-cloud/sdks/python/introduction.mdx @@ -15,7 +15,7 @@ pip install sqlitecloud ## Basic Usage -We aim for full compatibility with the established [sqlite3 API](https://docs.python.org/3/library/sqlite3.html), with the primary distinction being that our driver connects to SQLite Cloud databases. This allows you to migrate your [SQLite to the cloud](https://sqlitecloud.io) while continuing to use your existing codebase. +We aim for full compatibility with the established [sqlite3 API](https://docs.python.org/3/library/sqlite3.html), with the primary distinction being that our driver connects to SQLite Cloud databases. This allows you to migrate your [SQLite to the cloud](https://sqlite.ai) while continuing to use your existing codebase. ```python import sqlitecloud