예제 #1
0
파일: Tds.cs 프로젝트: psni/mono
		protected virtual void InitComm (int port, int timeout)
		{
			comm = new TdsComm (dataSource, port, packetSize, timeout, tdsVersion);
		}
예제 #2
0
		public Tds (string dataSource, int port, int packetSize, int timeout, TdsVersion tdsVersion)
		{
			this.tdsVersion = tdsVersion;
			this.packetSize = packetSize;
			this.dataSource = dataSource;

			comm = new TdsComm (dataSource, port, packetSize, timeout, tdsVersion);
		}