1:使用配置的数据库连接串,创建数据库连接 Connection 对象
2:构建 *** 作的sql语句
3:定义command对象
4:打开数据连接
5:执行命令
举一个例子,删除 *** 作
public class StudentService
{
//从配置文件中读取数据库连接字符串
private readonly static string connString = ConfigurationManager.ConnectionStrings["accpConnectionString"].ToString()
private readonly static string dboOwner = ConfigurationManager.ConnectionStrings["DataBaseOwner"].ToString()
AdoNetModels.Student model = new Student()
#region 删除数据1
public int DeleteStudent(int stuID)
{
int result = 0
// 数据库连接 Connection 对象
SqlConnection connection = new SqlConnection(connString)
// 构建删除的sql语句
string sql = string.Format("Delete From Student Where stuID={0}", stuID)
// 定义command对象
SqlCommand command = new SqlCommand(sql, connection)
try
{
connection.Open()
result = command.ExecuteNonQuery() // 执行命令
}
catch (Exception ex)
{
Console.WriteLine(ex.Message)
}
finally
{
connection.Close()
}
return result
}
#endregion
连接代码如下:int main()
{
EXEC SQL BEGIN DECLARE SECTION
char oc_passwd[101] /*数据库密码*/
char oc_userid[101] /*数据库用户名*/
char oc_dbname[101] /*数据库名*/
char oc_coad[101]
EXEC SQL END DECLARE SECTION
memset(oc_passwd, 0x00, sizeof(oc_passwd))
memset(oc_userid, 0x00, sizeof(oc_userid))
memset(oc_dbname, 0x00, sizeof(oc_dbname))
/*取数据库用户名*/
strcpy(oc_userid, "userid")
/*取数据库用户密码*/
strcpy(oc_passwd, "passwd")
/*取数据库名*/
strcpy(oc_dbname, "dbname")
EXEC SQL CONNECT :oc_userid
IDENTIFIED BY :oc_passwd
USING :oc_dbname
if (sqlca.sqlcode != 0)
{
printf("用户名[%s]密码[%s]数据库[%s]\n", oc_userid, oc_passwd, oc_dbname)
printf("连接数据库失败,sqlcode=%d\n", sqlca.sqlcode)
return -1
}
/*读table取coad字段*/
memset(oc_coad, 0x00, sizeof(oc_coad))
EXEC SQL SELECT coad
INTO :oc_coad
FROM table
WHERE 1=1
if (sqlca.sqlcode == NORECORD)
{
printf("查询无记录\n")
return -1
}
else if (sqlca.sqlcode != 0)
{
printf("查询失败,sqlcode=%d\n", sqlca.sqlcode)
return -1
}
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)