开发者

What is "query writer, new query in SQL Server Management Studio Express

开发者 https://www.devze.com 2023-01-07 03:34 出处:网络
Using: SQL Server 2005 and Visual Studio 2008, C# website asp.net Okay, I have always used SQL Server 2005 Express and its Management Studio as a host and a design interface to create tables from des

Using: SQL Server 2005 and Visual Studio 2008, C# website asp.net

Okay, I have always used SQL Server 2005 Express and its Management Studio as a host and a design interface to create tables from design view only.

All the queries, transaction, retrieval and anything needed during run time of the website is done using Visual Studio 2008 sql "connection open, then form command statement, and execute reader etc its all done using Visual Studio 08 c#"

So I was wondering that there is a query writer thing in SQL Server Management Studio Express.

What is it for ?

  • can it be used in place of vs08 c# queries?
  • how to call it from web sites c#?
  • can it use for variables queries like where id = @input etc

Please provide links to tutorials which explain how to use SQL Serv开发者_如何学Cer studio and Visual Studio 2008 together I searched the net but cannot find the answer


You can use the query writer to write queries that you only want to use right then, instead of setting up a web site to run queries over and over again. You can also use it to create something called stored procedures, which you can then call from your web site. However, if you want, you can do both of those things with Visual Studio, I believe. Stored procedures can accept input variables, and are very useful that way. Personally, I like them. Not everyone does. If you call them from C# with a Command object, you probably need to change the .CommandType property of the object to StoredProcedure.

0

精彩评论

暂无评论...
验证码 换一张
取 消