原文連結:http://www.vpsee.com/2009/08/use-shell-script-to-access-mysql/
下午寫了一個簡單的 bash 指令碼,用來測試程式,輸入一個測試案例檔案,
輸出沒有通過測試的用例和結果,然後把結果儲存到資料庫裡。如何在 bash 指令碼裡直接存取資料庫呢?
既然在 shell 裡可以直接用 mysql 命令操作資料庫,那麼在 shell script 裡也應該可以通過調用 mysql 來操作資料庫。
比如用下面的 bash shell 指令碼查詢資料庫:
Bash
如果需要複雜的資料庫操作的話不建議用 shell 指令碼,用 Perl/Python/PHP 操作資料庫很方便,
分別通過 Perl DBI/Python MySQLdb/PHP MySQL Module 介面來操作資料庫。
這裡再給出這三種不同語言串連、查詢資料庫的簡單例子(為了簡單和減少篇幅刪除一些不必要的代碼):
Perl
use DBI;
$db = DBI->connect('dbi:mysql:test', 'vpsee', 'password');
$query = "select * from test_mark";
$cursor = $db->prepare($query);
$cursor->execute;
while (@row = $cursor->fetchrow_array) {
print "@row\n";
}
import MySQLdb
db = MySQLdb.Connect("localhost", "vpsee", "password", "test")
cursor = db.cursor()
query = "SELECT * FROM test_mark"
cursor.execute(query)
while (1):
row = cursor.fetchone()
if row == None:
break
print "%s, %s, %s, %s" % (row[0], row[1], row[2], row[3])
<?php
$db = mysql_connect("localhost", "vpsee", "password");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM test_mark");
while ($row = mysql_fetch_array($result)) {
print "$row[0] $row[1] $row[2] $row[3]\n";
}
?>