Groovy的資料庫操作方法整理

2021-08-30 03:08:49 字數 613 閱讀 2753

最近用groovy寫了點東西,收集整理一下資料的操作方法備案。

1.連線資料庫的方法

def conn = sql.newinstance(db_url, username, password, driverclass)
以sql server的jtds驅動為例

def conn = sql.newinstance("jdbc:jtds:sqlserver://server/dbname", "username", "password", "net.sourceforge.jtds.jdbc.driver")
2.使用datasource獲得連線

def datasource = new datasource()

def ds= new groovy.sql.sql(datasource)

3.查詢資料庫

取得第一條資料:

conn.firstrow("select count(*) as total from ask where type=2");
遍歷每一條資料:

conn.eachrow(sqlstr)
未完待續。。。。。。。。

SQL資料庫 操作方法

sql資料庫操作方法 執行資料庫語句 public void executesql string strsql 是否有資料 public bool hasdata string tablel 建立資料庫 資料庫名 public void createdatabase string db else c...

Discuz 資料庫操作方法

函式 功能 db table tablename 獲取正確帶字首的表名,轉換資料庫控制代碼 db delete tablename,條件,條數限制 刪除表中的資料 db insert tablename,資料 陣列 是否返回插入id,是否是替換式,是否silent 插入資料操作 db update ...

Discuz X 資料庫操作方法

函式功能 db table tablename 獲取正確帶字首的表名,轉換資料庫控制代碼,db delete tablename,條件,條數限制 刪除表中的資料 db insert tablename,資料 陣列 是否返回插入id,是否是替換式,是否silent 插入資料操作 db update t...