Oracle database "Specified cast is farmland valid"

Source: Internet
Author: User

This error occurs when the author performs a calculation of the number of rows that match the criteria, and reads the computed rows with OracleDataReader.

The query statements are:

Select Count (1) from Hp_ts  Where  ts_id>0

The C # execution process is:

public static int Getsingle (string strSQL)        {            try            {                openconnection ();                OracleDataReader Oradatareader = ExecuteReader (Connection, CommandType.Text, strSQL, null);                int count =-1;
if (oradatareader.hasrows = = True && oradatareader.read ()) { count = oradatareader.getint32 (0); ① This error exception is thrown here }
Oradatareader.close (); return count; } catch (System.Exception ex) { throw ex; } }

Later debugging was found to be due to oradatareader[0] (or oradatareader["Count (1)"]), the type is decimal, so directly with the above code ① results, the exception described in this article will occur.

Later, the following workaround is given:

Replace the ① with the code shown below

Count = Convert.ToInt32 (oradatareader[0]. ToString ());

Oracle database "Specified cast is farmland valid"

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.