Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sqlite-cloud/knex-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand Down
2 changes: 1 addition & 1 deletion sqlite-cloud/platform/mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion sqlite-cloud/sdks/go/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

4 changes: 2 additions & 2 deletions sqlite-cloud/sdks/js/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
2 changes: 1 addition & 1 deletion sqlite-cloud/sdks/python/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down