Click here to Skip to main content
15,884,537 members
Articles / Programming Languages / Visual Basic

Oracle Advance Queue or Advanced Queuing from .NET (C#/VB/MC++)

Rate me:
Please Sign up or sign in to vote.
4.88/5 (26 votes)
22 Nov 2005CPOL23 min read 177.2K   3.7K   71  
How to use Oracle advance queue from a .NET enviroment.
using System;

namespace DBTypes
{
	public class Tm_Msgparticipant_Ty
	{
		#region Variables Declaration
		private string mMessageparticipantid;
		private string mMessageid;
		private string mAddresstype;
		private string mParticipanttype;
		private string mAddress;
		private string mPageaddress;
		private string mFaxaddress;
		private int mPagerpin;
		private int mServerpin;
		private string mPagertype;
		private double mUnit_Charge;
		private string mGroupid;
		private string mGroupmember_Yn;
		#endregion

		#region Constructors
		public Tm_Msgparticipant_Ty()
		{
		}
		#endregion

		#region Properties
		public string Messageparticipantid
		{
			get{return mMessageparticipantid;}
			set{mMessageparticipantid = value;}
		}

		public string Messageid
		{
			get{return mMessageid;}
			set{mMessageid = value;}
		}

		public string Addresstype
		{
			get{return mAddresstype;}
			set{mAddresstype = value;}
		}

		public string Participanttype
		{
			get{return mParticipanttype;}
			set{mParticipanttype = value;}
		}

		public string Address
		{
			get{return mAddress;}
			set{mAddress = value;}
		}

		public string Pageaddress
		{
			get{return mPageaddress;}
			set{mPageaddress = value;}
		}

		public string Faxaddress
		{
			get{return mFaxaddress;}
			set{mFaxaddress = value;}
		}

		public int Pagerpin
		{
			get{return mPagerpin;}
			set{mPagerpin = value;}
		}

		public int Serverpin
		{
			get{return mServerpin;}
			set{mServerpin = value;}
		}

		public string Pagertype
		{
			get{return mPagertype;}
			set{mPagertype = value;}
		}

		public double Unit_Charge
		{
			get{return mUnit_Charge;}
			set{mUnit_Charge = value;}
		}

		public string Groupid
		{
			get{return mGroupid;}
			set{mGroupid = value;}
		}

		public string Groupmember_Yn
		{
			get{return mGroupmember_Yn;}
			set{mGroupmember_Yn = value;}
		}
		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Microsoft
United States United States
I started with programming about 19 years ago as a teenager, from my old Commodore moving to PC/Server environment Windows/UNIX SQLServer/Oracle doing gwBasic, QBasic, Turbo Pascal, Assembler, Turbo C, BC, Summer87, Clipper, Fox, SQL, C/C++, Pro*C, VB3/5/6, Java, and today loving C#.

Currently working as SDE on Failover Clustering team for Microsoft.

Passion for most programming languages and my kids Aidan&Nadia.

Comments and Discussions