// http://svc.luckstar.com.tw/CodeHelper/cs/index.html // 2017-04-11, honda@luckstar.com.tw, Create for demo dispose template. e.g. Implement CSqlClient usage. // Please ref to: // CSqlClient.cs.txt, // CDBPubs.cs.txt, // CDBNorthwind.cs.txt, // CRunSqlClient.cs.tx // and Dispose-Template.txt using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleBase { public class CDBPubs : CSqlClient { public CDBPubs() : base() { msConnection = "Data Source=LocalHost;Initial Catalog=pubs;Integrated Security=SSPI;"; } } }