摘要: Sybase 存储过程的创建和执行--返回值为int的存储过程create proc testReturn@tname varchar(12) ,@tid int outputasbeginset @tid = (select testid from Mytest where testname=@tname)returnend--返回值为varchar的存储过程create proc testReturnT@tid int ,@tname varchar(12) outputas begin set @tname = (select testname from Mytest where tes 阅读全文
posted @ 2012-05-23 18:24 水目之痕 阅读(3293) 评论(1) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SybaseTest{ class Program { static void Main(string[] args) { Multi_Table(); } public static void Multi_Table() { Console.WriteLine("-------------... 阅读全文
posted @ 2012-05-23 08:52 水目之痕 阅读(174) 评论(0) 推荐(0)