資料庫查詢返回
mysql 關於資料庫查詢後返回的結果集
少使用一個函數:
$sql = "select * from aboutus where abid = '1'";
$result = mysql_query($sql);
echo mysql_error();//如果資料庫語句有錯,這里會輸出
echo "<pre>";
while($re = mysql_fetch_array($result))
{
print_r($re);
}
㈡ sqlite資料庫query返回值類型
sqlite資料庫query返回值類型為Cursor。根據查詢相關資料信息,SQLiteDatabase類中的query()方法用於從資料庫表中查詢數據信息,該方法執行查詢後返回值的類型為Cursor。
㈢ C# SQL資料庫查詢的返回值
string str_con = @"Data Source=26-3B72903E783B/SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=testDB;";
//定義SQL語句字元串
string sql = "select * from danwei where name='"+TextBox1.Text+"'";
//定義並實例化資料庫連接類型變數
SqlConnection conn = new SqlConnection(str_con);
//打開資料庫連接
conn.Open();
SqlCommand comm = new SqlCommand(sql, conn);
SqlDataAdapter da = new SqlDataAdapter(comm);
DataSet ds = new DataSet();
da.Fill(ds, "danwei");
dataGridView1.DataSource = ds;
dataGridView1.DataMember = "danwei";
㈣ 資料庫查詢的返回值問題
可以使用resultset.next()來判斷是否查詢到相應結果。resultset.next()的返回值是true或false,如果有結果返回true,沒有結果則返回false
使用方法
if(resultset.next()){
執行相關語句...
}