仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 574|回复: 8
打印 上一主题 下一主题

[学习教程] ASP.NET编程:怎样用C#来部署数据库

[复制链接]
若相依 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:29:23 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
我也不知道,我原来理解的,NET就是C++编程,只是与JAVA相对,呵呵。以为.ET就是高级C++编程。如今很多多少程序,都是与数据库相干的,因而在做安装的时分,部署数据库看似是一件很庞大的事变。实在就我团体而言,部署数据库是很复杂,大抵的思绪以下:
1.用自己的DBMS来发生数据库创立的SQL剧本;
2.接上去就是写程序来实行SQL剧本,从而到达创立数据库的目标。

以下用一个举例来讲明,数据库服务器用的是SQLServer。

起首要在数据库天生好的SQL剧本最前头,到场以下语句:
usemaster
GO

ifexists(select*fromsysdatabaseswherename=mytest)
dropdatabasemytest
GO

createdatabasemytest
GO

usemytest
GO
注:个中“mytest”是要创立的数据库名。

而程序的代码以下:
//---------------------------CreateDB-------------------------------------
//-------------------------------------------------------------------------
//---File:frmCreateDB.cs
//---Description:ThemainformfiletocreatedatabaseusingspecificSQLfile
//---Author:Knight
//---Date:Mar.18,2006
//-------------------------------------------------------------------------
//-------------------------{CreateDB}-----------------------------------
usingSystem;
usingSystem.Drawing;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Windows.Forms;
usingSystem.Data;
usingSystem.Data.SqlClient;

usingSystem.IO;
namespaceCreateDB
{
///<summary>
///SummarydescriptionforfrmCreateDB.
///</summary>
publicclassfrmCreateDB:System.Windows.Forms.Form
{
privateSystem.Windows.Forms.Labellabel1;
privateSystem.Windows.Forms.TextBoxtxtServerName;
privateSystem.Windows.Forms.Labellabel2;
privateSystem.Windows.Forms.Labellabel3;
privateSystem.Windows.Forms.TextBoxtxtUserName;
privateSystem.Windows.Forms.TextBoxtxtPassword;
privateSystem.Windows.Forms.ButtonbtnCreateDB;
///<summary>
///Requireddesignervariable.
///</summary>
privateSystem.ComponentModel.Containercomponents=null;

publicfrmCreateDB()
{
//
//RequiredforWindowsFormDesignersupport
//
InitializeComponent();

//
//TODO:AddanyconstructorcodeafterInitializeComponentcall
//
}

///<summary>
///Cleanupanyresourcesbeingused.
///</summary>
protectedoverridevoidDispose(booldisposing)
{
if(disposing)
{
if(components!=null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}

#regionWindowsFormDesignergeneratedcode
///<summary>
///RequiredmethodforDesignersupport-donotmodify
///thecontentsofthismethodwiththecodeeditor.
///</summary>
privatevoidInitializeComponent()
{
this.label1=newSystem.Windows.Forms.Label();
this.txtServerName=newSystem.Windows.Forms.TextBox();
this.txtUserName=newSystem.Windows.Forms.TextBox();
this.label2=newSystem.Windows.Forms.Label();
this.txtPassword=newSystem.Windows.Forms.TextBox();
this.label3=newSystem.Windows.Forms.Label();
this.btnCreateDB=newSystem.Windows.Forms.Button();
this.SuspendLayout();
//
//label1
//
this.label1.AutoSize=true;
this.label1.Location=newSystem.Drawing.Point(32,32);
this.label1.Name="label1";
this.label1.Size=newSystem.Drawing.Size(74,16);
this.label1.TabIndex=0;
this.label1.Text="ServerName:";
//
//txtServerName
//
this.txtServerName.Location=newSystem.Drawing.Point(120,32);
this.txtServerName.Name="txtServerName";
this.txtServerName.Size=newSystem.Drawing.Size(152,20);
this.txtServerName.TabIndex=1;
this.txtServerName.Text="";
//
//txtUserName
//
this.txtUserName.Location=newSystem.Drawing.Point(120,64);
this.txtUserName.Name="txtUserName";
this.txtUserName.Size=newSystem.Drawing.Size(152,20);
this.txtUserName.TabIndex=3;
this.txtUserName.Text="";
//
//label2
//
this.label2.AutoSize=true;
this.label2.Location=newSystem.Drawing.Point(40,64);
this.label2.Name="label2";
this.label2.Size=newSystem.Drawing.Size(64,16);
this.label2.TabIndex=2;
this.label2.Text="UserName:";
//
//txtPassword
//
this.txtPassword.Location=newSystem.Drawing.Point(120,96);
this.txtPassword.Name="txtPassword";
this.txtPassword.PasswordChar=*;
this.txtPassword.Size=newSystem.Drawing.Size(152,20);
this.txtPassword.TabIndex=5;
this.txtPassword.Text="";
//
//label3
//
this.label3.AutoSize=true;
this.label3.Location=newSystem.Drawing.Point(48,96);
this.label3.Name="label3";
this.label3.Size=newSystem.Drawing.Size(57,16);
this.label3.TabIndex=4;
this.label3.Text="Password:";
//
//btnCreateDB
//
this.btnCreateDB.Location=newSystem.Drawing.Point(168,136);
this.btnCreateDB.Name="btnCreateDB";
this.btnCreateDB.Size=newSystem.Drawing.Size(104,23);
this.btnCreateDB.TabIndex=6;
this.btnCreateDB.Text="&CreateDB";
this.btnCreateDB.Click+=newSystem.EventHandler(this.btnCreateDB_Click);
//
//frmCreateDB
//
this.AutoScaleBaseSize=newSystem.Drawing.Size(5,13);
this.ClientSize=newSystem.Drawing.Size(306,175);
this.Controls.Add(this.btnCreateDB);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtUserName);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtServerName);
this.Controls.Add(this.label1);
this.FormBorderStyle=System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox=false;
this.Name="frmCreateDB";
this.StartPosition=System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text="CreateDB";
this.ResumeLayout(false);

}
#endregion

///<summary>
///Themainentrypointfortheapplication.
///</summary>
[STAThread]
staticvoidMain()
{
Application.Run(newfrmCreateDB());
}

privatevoidbtnCreateDB_Click(objectsender,System.EventArgse)
{
SqlConnectionsqlConn=newSqlConnection();
try
{
sqlComm.ExecuteNonQuery();
returntrue;
}
catch(SqlExceptionsqlErr)
{
MessageBox.Show(sqlErr.Message);
}
catch
{
}

sqlComm.Dispose();
}
returntrue;
}
}
}

要注重的是在SQL剧本中的“
”,在SQLCommand中是没法辨认,因而要交换为空格;其次“GO”在SQLCommand中也是没法辨认,但为了使每条语句都实行,因而我在这里,用“;”来交换。

注:程序的地位和SQL剧本文件的地位为统一目次下,假如以为不便利的话,能够在我的基本上再延长。


归根到底,Java跨平台可以,但是要重新编写代码,否则还分什么J2EE/J2SE/J2ME呢!
不帅 该用户已被删除
沙发
发表于 2015-1-19 12:58:17 来自手机 | 只看该作者
Asp.net:首先来说,Asp.net和Asp没什么关系,看着像是升级版本什么的,其实没什么联系。Asp是脚本编程,用的是ASP语言,而ASP.net用的是C#语言,完全不同的东西。
乐观 该用户已被删除
板凳
发表于 2015-1-24 12:55:49 | 只看该作者
众所周知,Windows以易用而出名,也因此占据不少的服务器市场。
莫相离 该用户已被删除
地板
发表于 2015-2-1 14:57:50 | 只看该作者
Servlet的形式和前面讲的CGI差不多,它是HTML代码和后台程序分开的。它们的启动原理也差不多,都是服务器接到客户端的请求后,进行应答。不同的是,CGI对每个客户请求都打开一个进程(Process)。
admin 该用户已被删除
5#
发表于 2015-2-7 06:34:02 | 只看该作者
市场决定一切,我个人从经历上觉得两者至少在很长时间内还是要共存下去,包括C和C++,至少从找工作就看得出来,总不可能大家都像所谓的时尚一样,追捧一门语言并应用它。
若天明 该用户已被删除
6#
发表于 2015-2-20 23:41:13 | 只看该作者
以上是语言本身的弱点,在功能方面ASP同样存在问题,第一是功能太弱,一些底层操作只能通过组件来完成,在这点上是远远比不上PHP/JSP,其次就是缺乏完善的纠错/调试功能,这点上ASP/PHP/JSP差不多。
第二个灵魂 该用户已被删除
7#
发表于 2015-3-6 19:16:31 | 只看该作者
是目前ASP在UNIX/Linux上的应用可以说几乎为0)。所以平台的局限性和ASP自身的安全性限制了ASP的广泛应用。
透明 该用户已被删除
8#
发表于 2015-3-13 06:11:24 | 只看该作者
我觉得什么语言,精通就好,你要做的就是比其他80%的人都厉害,你就能得到只有20%的人才能得到的高薪。
再见西城 该用户已被删除
9#
发表于 2015-3-20 15:04:49 | 只看该作者
可以看作是VC和Java的混合体吧,尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2025-1-12 04:53

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表