shell 腳本操作informix資料庫的簡單模板: functionName(){ dbaccess << ! database 庫名; sql語句; ! } 慄子1:更新數據 functionName(){ nameStr=$1 idStr=$2 dbaccess << ! database ...
shell 腳本操作informix資料庫的簡單模板:
functionName(){ dbaccess << ! database 庫名; sql語句; ! }
慄子1:更新數據
functionName(){ nameStr=$1 idStr=$2 dbaccess << ! database test_db; update test_table set name='$nameStr' where id='$idStr'; ! } functionName bigbigpig 666
慄子2:導出informix庫表數據
functionName(){ dbaccess << ! database test_db; unload to $1 select * from $2; ! } functionName filename_testTable.txt test_table
informix資料庫登錄和mysql的區別:
informix登錄資料庫不需要手動輸入用戶和密碼,而mysql需要。原因:informix內部用戶映射操作系統用戶,即登錄linux就相當於也登錄了informix資料庫。