在ASP.net连接数据库并写入数据,一般使用ADO.NET框架,以下是ASP.NET向SQL Server数据库写入数据的基本步骤:
-
引用命名空间:使用.NET Framework的System.Data.SqlClient命名空间。
using System.Data.SqlClient;
-
创建连接:创建到SQL Server的连接,使用SqlConnection类。
string connectionString = "Data Source=(local);Initial Catalog=数据库名;Integrated Security=True"; SqlConnection connection = new SqlConnection(connectionString);
-
创建SqlCommand对象:写SQL语句并创建SqlCommand对象。
string sql = "INSERT INTO employees (title, firstName, lastName) VALUES ('Mr.', 'John', 'Doe')"; SqlCommand command = new SqlCommand(sql, connection);
-
执行SqlCommand:打开数据库连接,并执行SqlCommand。
try { connection.Open(); command.ExecuteNonQuery(); } catch (Exception ex) { Console.WriteLine(ex.Message); } finally { connection.Close(); }
注意:上述代码中的数据源、数据库名、表名、字段名需要你根据你的实际情况进行修改。SQL语句也应根据实际情况编写。同时,在操作数据库时,需要处理可能出现的异常,并确保在操作完成后关闭数据库连接。
发布者:luotuoemo,转转请注明出处:https://www.jintuiyun.com/170928.html