MyBatis 基本資料型別條件判斷問題

2022-08-20 20:39:13 字數 594 閱讀 9220

1.判斷引數使用:_parameter

<

select

id="findcount"

parametertype

="int"

resulttype

="int"

>

select count(id) from vote

<

where

>

<

if test

="_parameter != null"

>isuse=#

if>

where

>

select

>

2.或者修改介面:

int findcount(int isuse);

改為:

int findcount(@param(value="cmpid") int isuse);

3.一般出錯原因:mybatis預設採用ongl解析引數,所以會自動採用物件樹的形式取integer.cmpid。integer物件沒有cmpid屬性。如果不解析引數,mybatis自動識別傳入的引數,不會報錯。

基本資料型別

列舉 定義列舉型別 enum season 定義兩個列舉變數 enum season mylove yourlove 為兩個列舉變數賦值 yourlove fall mylove winter 把列舉值當成無符號整數執行輸出 nslog fall 的值 u fall 3 nslog winter 的...

基本資料型別

建立資料庫 create database database name 顯示所有資料庫 show databases 選擇使用那個資料庫 use database name 刪除資料庫 drop database database name 檢視自己mysql資料庫支援什麼儲存引擎 show eng...

基本資料型別

整型int 整數,在目前絕大多數機器上佔4個位元組。tc環境中是2個位元組 單精度實型float 單精度浮點數,一般是4個位元組長 雙精度實型double 雙精度浮點數,一般是8個位元組長 字元型char 字元,一般是1個位元組長 用來表示256個ascii字元,或者0 255的整數 列舉型enum...