📄 commenttask.sql.cs
字号:
/*
* CommentTask.SQL.cs @Microsoft Visual Studio 2008 <.NET Framework 3.5>
* AfritXia
* 2008-01-28
*
* Copyright(c) http://www.AfritXia.NET/
*
*/
using System;
namespace NET.AfritXia.MyHome.DBTask.Access2000
{
partial class CommentTask
{
// 添加新文章评论
private const string SQL_Append = @"
insert into [Comment] ( [BelongToArticleUID], [PostUser], [TextContent], [ClientIP] )
values ( @BelongToArticleUID, @PostUser, @TextContent, @ClientIP )";
// 删除评论信息
private const string SQL_Delete = @"
delete from [Comment] where [CommentUID] = @CommentUID";
// 浏览评论信息
private const string SQL_ViewCommentList = @"
select * from [Comment] where [BelongToArticleUID] = @BelongToArticleUID";
// 浏览单个评论信息
private const string SQL_ViewComment = @"
select * from [Comment] where [CommentUID] = @CommentUID";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -