Miha - totally off-topic question for you. Do you know of a website where I
"Miha Markic" wrote:
> WenYuan,
>
> I suggest you to obfuscate your e-mail address (they have to be readable to
> human though). It is enough if you inject some obvious words, such as
> NOSPAM, HATESPAM, etc.
> Unless you want spam, of course ;-)
>
> --
> Miha Markic [MVP C#, INETA Country Leader for Slovenia]
> RightHand .NET consulting & development
www.rthand.com > Blog:
http://cs.rthand.com/blogs/blog_with_righthand/ >
> "WenYuan Wang [MSFT]" <v-wywang@online.microsoft.com> wrote in message
> news:71xWHrZBIHA.6080@TK2MSFTNGHUB02.phx.gbl...
> > Hello Dave,
> >
> > Your first 2 select query string seems fine.
> > I tried it on my Oracle Express 10g machine.
> >
> > I created the table as below
> > create table reviewcustom(
> > softwareBuildRevisionOrVersion Number(8,2),
> > peerReviewMeetingDurationHrs Number(8,2)
> > )
> >
> > Execute the query in .net application as below
> > System.Data.OracleClient.OracleConnection oc = new
> > System.Data.OracleClient.OracleConnection();
> > System.Data.OracleClient.OracleCommand ocd = new
> > System.Data.OracleClient.OracleCommand();
> > ocd.Connection = oc;
> > ocd.CommandText = @"select peerReviewMeetingDurationHrs from
> > reviewcustom";
> > // I also tried another query
> > //ocd.CommandText = @"select distinct softwareBuildRevisionOrVersion from
> > reviewcustom";
> > int flg=ocd.ExecuteNonQuery();
> > Console.WriteLine(flg);
> > Console.Read();
> >
> > It works fine. I failed to reproduce the issue. Would you please try the
> > above method and let me know the result? Does it work fine on your side? I
> > suspect the column name is not the root accuse of the issue. Is it
> > possible
> > for you to send me the database files? I will try to repro the issue
> > again.
> > My alias is v-wywang@microsoft.com
> >
> > Have a great day,
> > Best regards,
> >
> > Wen Yuan
> > Microsoft Online Community Support
> > ==================================================
> > This posting is provided "AS IS" with no warranties, and confers no
> > rights.
> >
>