Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add drizzle sample for javascript #76

Merged
merged 1 commit into from
Dec 18, 2024
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
5 changes: 5 additions & 0 deletions .github/workflows/basic-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ on:
required: false
description: 'Whether to use a pre-deployed OceanBase container in CI workflow.'
default: true
oceanbase_image_tag:
type: string
required: false
description: 'The tag of OceanBase CE Docker image.'

concurrency:
group: basic-ci-${{ github.event.pull_request.number || github.ref }}-${{ inputs.module }}
Expand Down Expand Up @@ -55,6 +59,7 @@ jobs:
uses: oceanbase/setup-oceanbase-ce@v1
with:
network: 'host'
image_tag: ${{ inputs.oceanbase_image_tag || 'latest' }}
- name: Run sample for ${{ inputs.module }}
run: |
cd ${{ inputs.language }}/${{ inputs.module }} || exit
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ jobs:
module:
- name: 'mysql2'
with_oceanbase_container: true
- name: 'drizzle'
with_oceanbase_container: true
oceanbase_image_tag: '4.2.3_BETA'
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

only oceanbase-ce >= 4.2.3 supports serial data type and that is required for Drizzle.

uses: ./.github/workflows/basic-workflow.yml
with:
language: 'javascript'
module: ${{ matrix.module.name }}
with_oceanbase_container: ${{ matrix.module.with_oceanbase_container }}
oceanbase_image_tag: ${{ matrix.module.oceanbase_image_tag }}
1 change: 1 addition & 0 deletions javascript/drizzle/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DATABASE_URL="mysql://root:@127.0.0.1:2881/test"
60 changes: 60 additions & 0 deletions javascript/drizzle/README-CN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# 使用 Drizzle 连接 OceanBase

[English](README.md) | 简体中文

本文介绍如何通过 [Drizzle](https://orm.drizzle.team) 连接 [OceanBase](https://www.oceanbase.com) 数据库。

## 准备工作

确保 Node.js 和 npm 已经安装。

## 项目使用

拉取项目并进入相应目录:

```bash
git clone [email protected]:oceanbase/ob-samples.git
cd javascript/drizzle
```

安装依赖:

```bash
npm install
```

修改 `.env` 中的数据库连接串:

```bash
DATABASE_URL="mysql://root:@127.0.0.1:2881/test"
```

将 `db/schema.ts` 中定义的 `users` 模型同步到数据库中:

```bash
npx drizzle-kit push
```

执行 `index.ts` 中的示例代码:

```bash
npx ts-node index.ts
```

输出以下内容,说明执行成功:

```bash
[ { id: 1, email: '[email protected]', name: 'Alice' } ]
```

查看对应的 `users` 表,数据已正常插入:

```bash
mysql> select * from users;
+----+---------------------+-------+
| id | email | name |
+----+---------------------+-------+
| 1 | [email protected] | Alice |
+----+---------------------+-------+
1 row in set (0.01 sec)
```
60 changes: 60 additions & 0 deletions javascript/drizzle/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Connect to OceanBase with Drizzle

English | [简体中文](README-CN.md)

This document describes how to connect to [OceanBase](https://www.oceanbase.com) with [Drizzle](https://orm.drizzle.team).

## Preparation

Make sure `Node.js` and `npm` are installed.

## Usage

Clone the project and navigate to the appropriate directory:

```bash
git clone [email protected]:oceanbase/ob-samples.git
cd javascript/drizzle
```

Install dependencies:

```bash
npm install
```

Modify the connection string in the `.env` file:

```bash
DATABASE_URL="mysql://root:@127.0.0.1:2881/test"
```

Synchronize the `users` model defined in `db/schema.ts` to the database:

```bash
npx drizzle-kit push
```

Execute `index.ts`:

```bash
npx ts-node index.ts
```

The output should be as follows, indicating successful execution:

```bash
[ { id: 1, email: '[email protected]', name: 'Alice' } ]
```

Check the corresponding `users` table and the data has been inserted:

```bash
mysql> select * from users;
+----+---------------------+-------+
| id | email | name |
+----+---------------------+-------+
| 1 | [email protected] | Alice |
+----+---------------------+-------+
1 row in set (0.01 sec)
```
7 changes: 7 additions & 0 deletions javascript/drizzle/db/schema.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { mysqlTable, bigint, varchar } from "drizzle-orm/mysql-core";

export const usersTable = mysqlTable("users", {
id: bigint({ mode: "bigint" }).autoincrement().primaryKey(),
email: varchar({ length: 255 }).notNull().unique(),
name: varchar({ length: 255 }).notNull(),
});
11 changes: 11 additions & 0 deletions javascript/drizzle/drizzle.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import "dotenv/config";
import { defineConfig } from "drizzle-kit";

export default defineConfig({
out: "./drizzle",
schema: "./db/schema.ts",
dialect: "mysql",
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});
24 changes: 24 additions & 0 deletions javascript/drizzle/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import "dotenv/config";
import { drizzle } from "drizzle-orm/mysql2";
import { usersTable } from "./db/schema";

const db = drizzle(process.env.DATABASE_URL!);

async function main() {
const user: typeof usersTable.$inferInsert = {
name: "Alice",
email: "[email protected]",
};
await db.insert(usersTable).values(user);

const allUsers = await db.select().from(usersTable);
console.log(allUsers);
}

main()
.then(() => {
process.exit(0);
})
.catch((err) => {
console.log(err);
});
23 changes: 23 additions & 0 deletions javascript/drizzle/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "drizzle",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.0",
"mysql2": "^3.11.3"
},
"devDependencies": {
"@types/node": "^22.8.5",
"drizzle-kit": "^0.27.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}
4 changes: 4 additions & 0 deletions javascript/drizzle/run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
npm install
npx drizzle-kit generate --name=init
npx drizzle-kit migrate
npx ts-node index.ts
13 changes: 13 additions & 0 deletions javascript/drizzle/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es2016",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"strictPropertyInitialization": false,
"skipLibCheck": true
}
}
Loading