thinkjs3 0框架如何連線資料庫並處理資料

2021-10-07 15:23:23 字數 1134 閱讀 6568

|--- mysql //資料庫系統

| |--- database //資料庫名稱

| | |--- table //資料庫下面的表名稱

name

age***

height

小明17

男170

exports.model =

, mysql:

};

//定位到database資料庫中的table表

const table =

this

.model

('table');

//獲取表中所有資料

//select * from table

const data =

await table.

select()

;//await就是進行非同步操作 需要在函式前面加上async

//對table表進行進行新增

add_data =

// insert into table values ( '小紅', 15,'女',165);

const add =

await table.

add(add_data)

//即新增了add_data資料到資料庫table表中中

//刪除小明一行

//delete from table where name = '小明'

const del =

await table.

where()

.delete()

;//即刪除了小明一行

//查詢一行資料

//select * from table where name = '小紅'

let data_row =

await table.

where()

.find()

;

const sql =

'select * from table where age = 17'

;const show = tbale.

parsesql

(sql)

;

檢視資料庫連線數

sql server 檢視資料庫連線數 1.獲取當前指定資料庫的連線資訊 select from master.dbo.sysprocesses where dbid in select dbid from master.dbo.sysdatabases where name yourdatabas...

unigui如何連線資料庫

unigui如何連線資料庫 unigui既可以二層直連資料庫,也可以通過中介軟體連線資料庫。這裡只介紹unigui二層直連資料庫。資料庫連線控制項 資料集控制項都要拖放在mainmodule窗體上。unigui會為每乙個http session建立乙個tunimainmodule物件。附上ado資料...

unigui如何連線資料庫

unigui如何連線資料庫 unigui既可以二層直連資料庫,也可以通過中介軟體連線資料庫。這裡只介紹unigui二層直連資料庫。資料庫連線控制項 資料集控制項都要拖放在mainmodule窗體上。unigui會為每乙個http session建立乙個tunimainmodule物件。附上ado資料...