嵌入式sql的使用根据你开发程序使用的开发工具不同而不同,像c++,vb,pb,php,jsp,java都可以使用嵌入式sql。
下面两个文档可以参考一下。
>
try
{
String commandText="select count() from users";
SqlConnection conn = new SqlConnection();
connConnectionString = "Data Source=(local);Initial Catalog=classmate;User Id=sa;Password=sa";
SqlCommand cmd = new SqlCommand(commandText,conn);
connOpen();
string count = cmdExecuteScalar()ToString();
if (connState == ConnectionStateOpen)
{
ResponseWrite(count);
ResponseWrite("数据库连接成功!<br>");
ResponseWrite("<script>alert('连接已打开')</script>");
}
connClose();
if (connState == ConnectionStateClosed)
{
ResponseWrite("连接已关闭");
ResponseWrite("<script>alert('连接已关闭')</script>");
}
}
catch(Exception ex)
{
ResponseWrite("数据库连接失败"+exMessage);
}
}
以上就是关于怎样在程序中嵌入SQL语句实现与数据库的交互全部的内容,包括:怎样在程序中嵌入SQL语句实现与数据库的交互、sql server 2016怎么用、VS2005中,使用C#语言连接SQL数据库,然后实现插入数据的方法。等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)