摘要: CREATE PROCEDURE [dbo].[Proc_SaveIDCardDetectInfo] @IDInfoXml NVARCHAR(MAX), @detectXml NVARCHAR(MAX), @UserId int, @DetectResult bit, @Success bit output, @Message NVAR... 阅读全文
posted @ 2017-03-14 21:45 飙速 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 一、无参数查询 1、创建存储过程: create procedure GetAllClient --存储过程名 as select * from dbo.FinanceLease_Client --查询FinanceLease_Client所有数据 2、执行: exec GetAllClient二、 阅读全文
posted @ 2017-03-14 21:31 飙速 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 简单整理了一下前两周的面试题: 一、判断题: 1) 抽象类可以实现接口 2) 构造器constructor可以被override 3) String类不可以被继承 4) 接口可以继承接口 5) Sealed修饰的类不能被继承 6) 一个类可以有多个基类也可以实现多个接口 7) 类可以多重继承 8) 阅读全文
posted @ 2017-03-14 21:24 飙速 阅读(371) 评论(0) 推荐(0) 编辑