c資料庫開發
❶ 用C編寫資料庫怎麼寫
一個萬能的DBHelper就可以解決都事情,直接對資料庫中的存儲過程進行調用,只需要傳入參數就可以和你調用的存儲過程就可以。有關萬能DBHelper的參考代碼如下:using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.sqlClient;
namespace Clock
{
public static class DBHelper
{
private static SqlConnection connection;//這里的SqlConnection 自己寫//對數據進行查詢時候調用的
public static SqlConnection Connection
{
get
{
string connectionString = "Data Source=PC-Ahsun;Initial Catalog=Clock; uid=sa;pwd=striveahsun";
if (connection == null)
{
connection = new SqlConnection(connectionString);
connection.Open();
}
else if (connection.State == System.Data.ConnectionState.Closed)
{
connection.Open();
}
else if (connection.State == System.Data.ConnectionState.Broken)
{
connection.Close();
connection.Open();
}
return connection;
}
}//對數據進行增刪改時候調用的
public static int ExecuteCommand(string sql)
{
SqlCommand cmd = new SqlCommand(sql,connection);
int resualt = cmd.ExecuteNonQuery();
return resualt;
}
}
}
❷ c語言中如何做資料庫
你是要開發一個資料庫還是用c語言來編寫訪問資料庫的應用
❸ C語言中如何做資料庫(c語言寫資料庫)
CDatabase對象表示到數據源的連接,通過它可以操作數據源。數據源是位於一些資料庫管理系統(DBMS)的數據的指定實例,包括Server,MicrosoftAess,BorlanddBASE和xBASE。在應用中可以同時使一個或多個CDatabase對象活動。
注意讓高氏:
如果在處理數據訪問對象(DAO)類而不是開放資料庫連接(念瞎ODBC)類,可使用類。有關的更多信息,請參閱聯機文檔「VisualC程序員指南」中的「資料庫主題(通用)」與「DAO和MFC」。
為使用CDatabase,構造一個CDatabase對象並調用它的OpenEx成員函數。這打開了一個連接。在接著構造CRecordset對象以操縱連接的數據源時,向CDatabase對象傳遞記錄集構造程序指針。完成使用連接時坦散調用Close成員函數並銷毀CDatabase對象。Close關閉以前沒有關閉的任何記錄集。