Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
73e27e5
lake: update bendsql to lakesql
lilin90 May 11, 2026
5487048
Switch docs to lake-* driver names
lilin90 May 11, 2026
15942e0
Update tidb-cloud-lake/guides/connect-using-lakesql.md
lilin90 May 11, 2026
9891eae
Update tidb-cloud-lake/guides/connect-using-lakesql.md
lilin90 May 11, 2026
f150969
Update connect-using-lakesql.md
lilin90 May 11, 2026
2bf8891
Fix two links
lilin90 May 11, 2026
0318be1
Update wording
lilin90 May 11, 2026
edba388
Use tidbcloudlake-driver
lilin90 May 25, 2026
55c9cb0
Update links and names
lilin90 May 25, 2026
06f41cf
Update two links
lilin90 May 26, 2026
04f8ac9
Update command to address comment
lilin90 Jun 8, 2026
483c765
Update lake client names, URLs, and placeholders
lilin90 Jun 8, 2026
ff730dd
Remove inapplicable sqlalchemy links
lilin90 Jun 8, 2026
41575fd
Update Apt install instructions for LakeSQL
lilin90 Jun 8, 2026
d6b69e5
Update driver package names in guide
lilin90 Jun 8, 2026
4838c64
Remove inapplicable Go package link
lilin90 Jun 8, 2026
f8554df
toc: remove two MCP entries
lilin90 Jun 8, 2026
23e3147
Update ai-ml-integration.md
lilin90 Jun 8, 2026
2ae948b
Update tidb-cloud-lake/guides/connect-using-lakesql.md
lilin90 Jun 8, 2026
a98117d
Update tidb-cloud-lake/guides/connect-using-python.md
lilin90 Jun 8, 2026
88ccd62
Update tidb-cloud-lake/guides/connect-using-lakesql.md
lilin90 Jun 8, 2026
78ed897
Update tidb-cloud-lake/guides/load-from-local-file.md
lilin90 Jun 8, 2026
f27ead4
Apply suggestions from code review
lilin90 Jun 9, 2026
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
4 changes: 1 addition & 3 deletions TOC-tidb-cloud-lake.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
- Connect
- [Overview](/tidb-cloud-lake/guides/connection-overview.md)
- SQL Clients
- [BendSQL](/tidb-cloud-lake/guides/connect-using-bendsql.md)
- [LakeSQL](/tidb-cloud-lake/guides/connect-using-lakesql.md)
- [DBeaver](/tidb-cloud-lake/guides/connect-using-dbeaver.md)
- Drivers
- [Overview](/tidb-cloud-lake/guides/driver-overview.md)
Expand Down Expand Up @@ -99,8 +99,6 @@
- AI and ML Integration
- [Overview](/tidb-cloud-lake/guides/ai-ml-integration.md)
- [External AI Functions](/tidb-cloud-lake/guides/external-ai-functions.md)
- [MCP Server](/tidb-cloud-lake/guides/mcp-server.md)
- [MCP Client Integration](/tidb-cloud-lake/guides/mcp-client-integration.md)
- Multimodal Data Analytics
- [Overview](/tidb-cloud-lake/guides/multimodal-data-analytics.md)
- [SQL Analytics](/tidb-cloud-lake/guides/sql-analytics.md)
Expand Down
2 changes: 2 additions & 0 deletions tidb-cloud-lake/guides/ai-ml-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ The Model Context Protocol (MCP) server enables AI assistants to interact with y

**[External Functions Guide](/tidb-cloud-lake/guides/external-ai-functions.md)** - Learn how to create and deploy custom AI functions with practical examples and implementation guidance

<!-- These two files are removed from TOC for now because of private repo.
**[MCP Server Guide](/tidb-cloud-lake/guides/mcp-server.md)** - Build a conversational BI tool using mcp-databend and natural language queries

**[MCP Client Integration](/tidb-cloud-lake/guides/mcp-client-integration.md)** - Configure generic MCP clients (like Codex) to connect to {{{ .lake }}}
-->
2 changes: 1 addition & 1 deletion tidb-cloud-lake/guides/authenticate-with-aws-iam-role.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ After {{{ .lake }}} support shares the trusted principal information for your or

Click `View Role`, and record the role ARN: `arn:aws:iam::987654321987:role/databend-test`

4. Run the following SQL statement in {{{ .lake }}} cloud worksheet or `BendSQL`:
4. Run the following SQL statement in {{{ .lake }}} cloud worksheet or `LakeSQL`:

```sql
CREATE CONNECTION databend_test STORAGE_TYPE = 's3' ROLE_ARN = 'arn:aws:iam::987654321987:role/databend-test' EXTERNAL_ID = 'my-external-id-123';
Expand Down
9 changes: 4 additions & 5 deletions tidb-cloud-lake/guides/connect-using-golang.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The official Go driver provides a standard `database/sql` interface for seamless
## Installation

```bash
go get github.com/databendlabs/databend-go
go get github.com/tidbcloud/lake-go
```

**Connection String**: See [drivers overview](/tidb-cloud-lake/guides/driver-overview.md) for DSN format and examples.
Expand Down Expand Up @@ -60,7 +60,7 @@ import (
"fmt"
"log"

_ "github.com/databendlabs/databend-go"
_ "github.com/tidbcloud/lake-go"
)

// Connect to {{{ .lake }}}
Expand Down Expand Up @@ -95,6 +95,5 @@ fmt.Printf("User: %d, %s\n", id, name)

## Resources

- **GitHub Repository**: [databend-go](https://github.com/databendlabs/databend-go)
- **Go Package**: [pkg.go.dev](https://pkg.go.dev/github.com/datafuselabs/databend-go)
- **Examples**: [GitHub Examples](https://github.com/databendlabs/databend-go/tree/main/examples)
- **GitHub Repository**: [lake-go](https://github.com/tidbcloud/lake-go)
- **Examples**: [GitHub Examples](https://github.com/tidbcloud/lake-go/tree/main/examples)
18 changes: 8 additions & 10 deletions tidb-cloud-lake/guides/connect-using-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,20 @@ The official JDBC driver provides standard JDBC 4.0 compatibility for seamless i

```xml
<dependency>
<groupId>com.databend</groupId>
<artifactId>databend-jdbc</artifactId>
<version>0.4.1</version>
<groupId>com.tidbcloud</groupId>
<artifactId>lake-jdbc</artifactId>
<version>0.4.6</version>
</dependency>
```

### Gradle

```gradle
implementation 'com.databend:databend-jdbc:0.4.1'
implementation 'com.tidbcloud:lake-jdbc:0.4.6'
```

**Connection String**: See [drivers overview](/tidb-cloud-lake/guides/driver-overview.md) for DSN format and examples.

---

## Key Features

- ✅ **JDBC 4.0 Compatible**: Standard JDBC interface support
Expand Down Expand Up @@ -114,17 +112,17 @@ conn.close();

## Configuration Reference

For complete databend-jdbc driver configuration options including:
For complete lake-jdbc driver configuration options including:

- Connection string parameters
- SSL/TLS configuration
- Authentication methods
- Performance tuning parameters

Please refer to the [official databend-jdbc Connection Guide](https://github.com/databendlabs/databend-jdbc/blob/main/docs/Connection.md).
Please refer to the [official lake-jdbc Connection Guide](https://github.com/tidbcloud/lake-jdbc/blob/main/docs/Connection.md).

## Resources

- **Maven Central**: [databend-jdbc](https://repo1.maven.org/maven2/com/databend/databend-jdbc/)
- **GitHub Repository**: [databend-jdbc](https://github.com/databendlabs/databend-jdbc)
- **Maven Central**: [lake-jdbc](https://repo1.maven.org/maven2/com/tidbcloud/lake-jdbc/)
- **GitHub Repository**: [lake-jdbc](https://github.com/tidbcloud/lake-jdbc)
- **JDBC Documentation**: [Oracle JDBC Guide](https://docs.oracle.com/javase/tutorial/jdbc/)
Loading
Loading