摘要:
准备一些测试数据,如下: use TestCreate table Student(ID int identity(1,1) primary key,[Name] nvarchar(50) not null)Create Table Book(ID int identity(1,1) primary 阅读全文
摘要:
问题: 举个简单例子说明create or replace procedure procStr(inString in varchar2)asbeginselect * from book where id in (inString);end procStr;我在inString中输入‘21,22’ 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Data; 4 using System.Data.SqlClient; 5 using System.Reflection; 6 7 namespace DAL.D 阅读全文