C# - Create SQL Server table programmatically

前端 未结 7 2362
温柔的废话
温柔的废话 2020-12-15 06:37

I am trying to create a SQL Server table programmatically. Here is the code.

using (SqlConnection con = new SqlConnection(conStr))
{

    try
    {
        /         


        
7条回答
  •  一向
    一向 (楼主)
    2020-12-15 06:59

    For managing DataBase Objects in SQL Server i would suggest using Server Management Objects

提交回复
热议问题