2020-09
在資料庫裡面對資料進行update操作之後要進行commit。這樣其他地方才能查到更新之後的內容。
2020-10
oracle進行foreach插入的時候存在不一樣的語法。正確的寫法:
<insert id="insertexpenseitem" parametertype="list">
insert
into
expenseitem(itemid,expid,type,amount,itemdesc)
select seq_item.nextval itemid,a.*
from
(
all" >
select
# expid,
# type,
# amount,
# itemdesc
from
dual
foreach>
)ainsert
>
2020-12
oracle進行分頁查詢
select*from
(
select
temp.*,rownum rn from
(
//具體的查詢語句
)temp
where rownum <= #*#)
where rn >= (#-
1) * # +
1
OpenCV遇到的問題(持續更新)
1.未經處理的異常 0x00007ffa95d9a388 處 位於 image pro1.exe 中 有未經處理的異常 microsoft c 異常 cv exception,位於記憶體位置 0x000000bd2c8ef520 處。如圖 解決方法 原因一 imread中檔案的路徑,和.cpp檔案或...
爬蟲遇到的問題持續更新
feed export encoding utf 8 如果輸出到csv檔案是亂碼問題,那麼你要用記事本開啟,然後在儲存為utf 8 格式 因為excl 預設的編碼是acii 2.語法 說明 artical div 1 選取所有屬於artical 子元素的第乙個div元素 artical div la...
遇到的oracle問題
1 表空間 user1 中無許可權 沒有把resource和connect 許可權賦給使用者,賦予許可權 grant resource,connect to 使用者名稱 2 超出表空間 user1 的空間限量 應該是你建立表的使用者在users表空間上的quota不足。解決方法 alter user...