Click here to Skip to main content
15,888,610 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.6K   3.7K   71  
How to use Oracle advance queue from a .NET enviroment.
using System;

namespace DBTypes
{
	public class Tm_Payload_Base
	{
		#region Variables Declaration
		private int mStatus_Code;
		private int mAttempts_Count;
		private string mStatus_Message;
		private double mProvider_Id;
		private string mAqlogid;
		#endregion

		#region Constructors
		public Tm_Payload_Base()
		{
		}
		#endregion

		#region Properties
		public int Status_Code
		{
			get{return mStatus_Code;}
			set{mStatus_Code = value;}
		}

		public int Attempts_Count
		{
			get{return mAttempts_Count;}
			set{mAttempts_Count = value;}
		}

		public string Status_Message
		{
			get{return mStatus_Message;}
			set{mStatus_Message = value;}
		}

		public double Provider_Id
		{
			get{return mProvider_Id;}
			set{mProvider_Id = value;}
		}

		public string Aqlogid
		{
			get{return mAqlogid;}
			set{mAqlogid = 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