Beispiel #1
0
Datei: Tds.cs Projekt: psni/mono
		protected virtual void InitComm (int port, int timeout)
		{
			comm = new TdsComm (dataSource, port, packetSize, timeout, tdsVersion);
		}
Beispiel #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);
		}