随笔 - 631  文章 - 75  评论 - 186  阅读 - 143万
 
摘要: ylbtech-OpenSource:Nav-谷歌开发-百度文库|空间-博客园-QQ空间1.A,Google开源代码、资料1.A.1,ylbtech-doc URL: http://code.google.com/p/ylbtech-doc/ DESC:帮助文档。1.A.2,ylbtech-fbd URL: http://code.google.com/p/ylbtech-fbd/ DESC:功能模块FBD(function block diagram )。1.A.3,ylbtech-html URL: http://code.google.com/p/ylbtech-html/... 阅读全文
posted @ 2013-02-23 22:59 ylbtech 阅读(3448) 评论(0) 推荐(1) 编辑
  2018年8月15日
ylbtech-DBS:TestSys

 

1.返回顶部
1、
-- =============================================
-- 测试系统
-- 2018-4-12
-- =============================================
USE master
GO

-- Drop the database if it already exists
IF  EXISTS (
    SELECT name 
        FROM sys.databases 
        WHERE name = N'TestSys'
)
DROP DATABASE TestSys
GO

CREATE DATABASE TestSys
GO
use TestSys
go
-- 资源表
create table Src
(
Id int primary key identity(10001,1),    --编号【ID,PK】
Name varchar(200),    --系统名称
Intro text,            --系统介绍
Content1 text,        --测试内容
Content2 text,        --原型内容
)
-- 账户表
create table Account
(
Id int primary key identity(10001,1),    --编号【ID,PK】
Name varchar(200) unique,    --用户名【UQ】
Pwd varchar(200),        --密码
IsDisabled bit        --是否禁用
)
-- 账户资源表(权限表)
create table AccountSrc
(
Id int primary key identity(10001,1),    --编号【ID,PK】
AccountId int,            --账户Id
SrcId int,                --资源Id
)

 

2、
2.返回顶部
 
3.返回顶部
 
4.返回顶部
 
5.返回顶部
 
 
6.返回顶部
 
warn 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
posted @ 2018-08-15 19:40 ylbtech 阅读(343) 评论(0) 推荐(1) 编辑
摘要: 1、 USE master GO -- Drop the database if it already exists IF EXISTS ( SELECT name FROM sys.databases WHERE name = N'CUPhone' ) DROP DATABASE CUPhone 阅读全文
posted @ 2018-08-15 19:37 ylbtech 阅读(368) 评论(0) 推荐(1) 编辑
  2018年7月19日
摘要: 1、 “/”应用程序中的服务器错误。 运行时错误 说明: 服务器上出现应用程序错误。此应用程序的当前自定义错误设置禁止查看应用程序错误的详细信息。 详细信息: 若要使他人能够从本地服务器计算机上查看此特定错误消息的详细信息,请在位于当前 Web 应用程序根目录下的“web.config”配置文件中创 阅读全文
posted @ 2018-07-19 19:43 ylbtech 阅读(2554) 评论(0) 推荐(0) 编辑
  2018年7月9日
摘要: 1, “/”应用程序中的服务器错误。 未能找到路径“D:\work-集客\DsWebs\DsWeb\DS.Web\dist\bin\roslyn\csc.exe”的一部分。 说明: 执行当前 Web 请求期间,出现未经处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息 阅读全文
posted @ 2018-07-09 14:16 ylbtech 阅读(2686) 评论(1) 推荐(0) 编辑
  2018年6月19日
摘要: 1、f_GetPy Create function [dbo].[f_GetPy](@str nvarchar(4000)) returns nvarchar(4000) as begin declare @strlen int,@re nvarchar(4000) declare @t table 阅读全文
posted @ 2018-06-19 10:53 ylbtech 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 1、DbConnectionManipulator.cs using System; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Threading.Tasks; n 阅读全文
posted @ 2018-06-19 10:46 ylbtech 阅读(291) 评论(0) 推荐(0) 编辑
  2018年6月15日
摘要: 2、 -- -- 类别表 -- create table TCategory ( Id int primary key identity(101,1), --编号【PK,ID】 Name varchar(max), --名称 Intro varchar(max), --介绍 CreateTime D 阅读全文
posted @ 2018-06-15 09:07 ylbtech 阅读(366) 评论(0) 推荐(0) 编辑
  2018年6月6日
摘要: 1、百度地图 http://lbsyun.baidu.com/ 2、高德地图 http://lbs.amap.com/ 3、 阅读全文
posted @ 2018-06-06 13:43 ylbtech 阅读(206) 评论(0) 推荐(0) 编辑
  2018年5月24日
摘要: 1-1、 0、 https://grafana.com/ 1、 http://www.ywnds.com/?cat=122 2、 阅读全文
posted @ 2018-05-24 20:18 ylbtech 阅读(197) 评论(0) 推荐(0) 编辑
  2018年5月10日
摘要: 1、public static Guid NewGuid(); // // 摘要: // 初始化 System.Guid 结构的新实例。 // // 返回结果: // 一个新的 GUID 对象。 [SecuritySafeCritical] public static Guid NewGuid(); 阅读全文
posted @ 2018-05-10 11:52 ylbtech 阅读(322) 评论(0) 推荐(0) 编辑
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示