📄 documentdb.cs
字号:
using System;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
namespace MyStarterKit.Portal.Web
{
/// <summary>
/// DocumentDB 的摘要说明。
/// </summary>
public class DocumentDB
{
//*********************************************************************
//
// GetDocuments Method
//
// The GetDocuments method returns a SqlDataReader containing all of the
// documents for a specific portal module from the documents
// database.
//
// Other relevant sources:
// + <a href="GetDocuments.htm" style="color:green">GetDocuments Stored Procedure</a>
//
//*********************************************************************
public SqlDataReader GetDocuments(int moduleId)
{
// Create Instance of Connection and Command Object
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["connectionString"]);
SqlCommand myCommand = new SqlCommand("Portal_GetDocuments", myConnection);
// Mark the Command as a SPROC
myCommand.CommandType = CommandType.StoredProcedure;
// Add Parameters to SPROC
SqlParameter parameterModuleId = new SqlParameter("@ModuleID", SqlDbType.Int, 4);
parameterModuleId.Value = moduleId;
myCommand.Parameters.Add(parameterModuleId);
// Execute the command
myConnection.Open();
SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// Return the datareader
return result;
}
//*********************************************************************
//
// GetSingleDocument Method
//
// The GetSingleDocument method returns a SqlDataReader containing details
// about a specific document from the Documents database table.
//
// Other relevant sources:
// + <a href="GetSingleDocument.htm" style="color:green">GetSingleDocument Stored Procedure</a>
//
//*********************************************************************
public SqlDataReader GetSingleDocument(int itemId)
{
// Create Instance of Connection and Command Object
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["connectionString"]);
SqlCommand myCommand = new SqlCommand("Portal_GetSingleDocument", myConnection);
// Mark the Command as a SPROC
myCommand.CommandType = CommandType.StoredProcedure;
// Add Parameters to SPROC
SqlParameter parameterItemId = new SqlParameter("@ItemID", SqlDbType.Int, 4);
parameterItemId.Value = itemId;
myCommand.Parameters.Add(parameterItemId);
// Execute the command
myConnection.Open();
SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// Return the datareader
return result;
}
//*********************************************************************
//
// GetDocumentContent Method
//
// The GetDocumentContent method returns the contents of the specified
// document from the Documents database table.
//
// Other relevant sources:
// + <a href="GetDocumentContent.htm" style="color:green">GetDocumentContent</a>
//
//*********************************************************************
public SqlDataReader GetDocumentContent(int itemId)
{
// Create Instance of Connection and Command Object
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["connectionString"]);
SqlCommand myCommand = new SqlCommand("Portal_GetDocumentContent", myConnection);
// Mark the Command as a SPROC
myCommand.CommandType = CommandType.StoredProcedure;
// Add Parameters to SPROC
SqlParameter parameterItemId = new SqlParameter("@ItemID", SqlDbType.Int, 4);
parameterItemId.Value = itemId;
myCommand.Parameters.Add(parameterItemId);
// Execute the command
myConnection.Open();
SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// Return the datareader
return result;
}
//*********************************************************************
//
// DeleteDocument Method
//
// The DeleteDocument method deletes the specified document from
// the Documents database table.
//
// Other relevant sources:
// + <a href="DeleteDocument.htm" style="color:green">DeleteDocument Stored Procedure</a>
//
//*********************************************************************
public void DeleteDocument(int itemID)
{
// Create Instance of Connection and Command Object
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["connectionString"]);
SqlCommand myCommand = new SqlCommand("Portal_DeleteDocument", myConnection);
// Mark the Command as a SPROC
myCommand.CommandType = CommandType.StoredProcedure;
// Add Parameters to SPROC
SqlParameter parameterItemID = new SqlParameter("@ItemID", SqlDbType.Int, 4);
parameterItemID.Value = itemID;
myCommand.Parameters.Add(parameterItemID);
myConnection.Open();
myCommand.ExecuteNonQuery();
myConnection.Close();
}
//*********************************************************************
//
// UpdateDocument Method
//
// The UpdateDocument method updates the specified document within
// the Documents database table.
//
// Other relevant sources:
// + <a href="UpdateDocument.htm" style="color:green">UpdateDocument Stored Procedure</a>
//
//*********************************************************************
public void UpdateDocument(int moduleId, int itemId, String userName, String name, String url, String category, byte[] content, int size, String contentType)
{
if (userName.Length < 1)
{
userName = "unknown";
}
// Create Instance of Connection and Command Object
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["connectionString"]);
SqlCommand myCommand = new SqlCommand("Portal_UpdateDocument", myConnection);
// Mark the Command as a SPROC
myCommand.CommandType = CommandType.StoredProcedure;
// Add Parameters to SPROC
SqlParameter parameterItemID = new SqlParameter("@ItemID", SqlDbType.Int, 4);
parameterItemID.Value = itemId;
myCommand.Parameters.Add(parameterItemID);
SqlParameter parameterModuleID = new SqlParameter("@ModuleID", SqlDbType.Int, 4);
parameterModuleID.Value = moduleId;
myCommand.Parameters.Add(parameterModuleID);
SqlParameter parameterUserName = new SqlParameter("@UserName", SqlDbType.NVarChar, 100);
parameterUserName.Value = userName;
myCommand.Parameters.Add(parameterUserName);
SqlParameter parameterName = new SqlParameter("@FileFriendlyName", SqlDbType.NVarChar, 150);
parameterName.Value = name;
myCommand.Parameters.Add(parameterName);
SqlParameter parameterFileUrl = new SqlParameter("@FileNameUrl", SqlDbType.NVarChar, 250);
parameterFileUrl.Value = url;
myCommand.Parameters.Add(parameterFileUrl);
SqlParameter parameterCategory = new SqlParameter("@Category", SqlDbType.NVarChar, 50);
parameterCategory.Value = category;
myCommand.Parameters.Add(parameterCategory);
SqlParameter parameterContent = new SqlParameter("@Content", SqlDbType.Image);
parameterContent.Value = content;
myCommand.Parameters.Add(parameterContent);
SqlParameter parameterContentType = new SqlParameter("@ContentType", SqlDbType.NVarChar, 50);
parameterContentType.Value = contentType;
myCommand.Parameters.Add(parameterContentType);
SqlParameter parameterContentSize = new SqlParameter("@ContentSize", SqlDbType.Int, 4);
parameterContentSize.Value = size;
myCommand.Parameters.Add(parameterContentSize);
myConnection.Open();
myCommand.ExecuteNonQuery();
myConnection.Close();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -