簡體   English   中英

如何從ASP.net 2.0中的代碼隱藏創建數據庫?

[英]How to create database from codebehind in ASP.net 2.0?

我需要從ASP.net 2.0中的代碼隱藏創建數據庫。

請幫忙。

可能是這樣的:

SqlConnection connection = new SqlConnection(connectionString);
SqlCommand command = new SqlCommand("CREATE DATABASE database_name", connection);
command.Connection.Open();
command.ExecuteReader();
connection.Close();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM