今天我正在做一个项目,我将通过源代码而不是通过内置向导创建一个关系数据库。我一直在寻找向我解释这样做的过程但似乎无法做到的教程所以。大多数都有关于如何使用内置向导和向表格添加内容的教程,我的主要目标是实际拥有一个用户可以使用的实用程序,其中包括一个自建数据库。如果你有这方面的例子,我将不胜感激,或者如果你知道任何好的教程也会有帮助
谢谢!
class Program
{
static string strcon = @"user id = sde ; password = passrd;
server =dfgserver;database =valrollclients";
static SqlCommand cmdinserted = new SqlCommand();
static SqlConnection con; //declaring a connection object
static void Main(string[] args)
{
cmdinserted.CommandText = "[dbo].[prcinsert_client]";
cmdinserted.CommandTimeout = 0;
cmdinserted.CommandType = CommandType.StoredProcedure;
cmdinserted.Connection = con;
cmdinserted.Parameters.Add("@client_name",
SqlDbType.VarChar, 12).Value = "me";
cmdinserted.Parameters.Add("@client_lastname",
SqlDbType.VarChar, 15).Value = "abutair";
cmdinserted.Parameters.Add("@client_age ",
SqlDbType.Int, 4).Value = 4;
try
{
con.Open(); //open connection
cmdinserted.ExecuteNonQuery(); //execute the stored procedure
con.Close();//close connection
}
catch (SqlException) //catch an error
{
throw; //throw it back to the calling method
}