Skip to content
Open
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 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
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
8 changes: 4 additions & 4 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,6 @@ fmt.Printf("User: %d, %s\n", id, name)

## Resources

- **GitHub Repository**: [databend-go](https://github.com/databendlabs/databend-go)
- **GitHub Repository**: [lake-go](https://github.com/tidbcloud/lake-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)
- **Examples**: [GitHub Examples](https://github.com/tidbcloud/lake-go/tree/main/examples)
12 changes: 6 additions & 6 deletions tidb-cloud-lake/guides/connect-using-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ The official JDBC driver provides standard JDBC 4.0 compatibility for seamless i
```xml
<dependency>
<groupId>com.databend</groupId>
<artifactId>databend-jdbc</artifactId>
<artifactId>lake-jdbc</artifactId>
<version>0.4.1</version>
</dependency>
```

### Gradle

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

**Connection String**: See [drivers overview](/tidb-cloud-lake/guides/driver-overview.md) for DSN format and examples.
Expand Down Expand Up @@ -114,17 +114,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/databend/databend-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