sql >> Database >  >> RDS >> Oracle

hoe de Oracle-database te bevragen op basis van gebruikersinvoer met behulp van asp.net c#

Dit zou moeten werken:

    public string CallCardDetails(string CallCardNo)
    {
        //initialize
        using (DataSet ds = new DataSet())
        {
            //connect
            using (OracleConnection conn = new OracleConnection("User Id=oraDB;Password=ora;Data Source=CCT"))
            {
                // Oracle uses : for parameters, not @
                string query = "SELECT idcard from CallCardTable where idcard= :pCallCardNo";

                // Let the using block dispose of your OracleCommand
                using (OracleCommand cmd = new OracleCommand(query, conn))
                {
                    // Note: be careful with AddWithValue: if there's a mismatch between the .NET datatype of
                    // CallCardNo and the idcard column you could have an issue.  Cast the value you provide
                    // here to whatever is closest to your database type (String for VARCHAR2, DateTime for DATE, Decimal for NUMBER, etc.)
                    cmd.Parameters.AddWithValue(":pCallCardNo", CallCardNo);
                    conn.Open();

                    // Again, wrap disposables in a using or use try/catch/finally (using will dispose of things in case of exceptions too)
                    using (OracleDataAdapter dA = new OracleDataAdapter(cmd))
                    {
                        dA.Fill(ds);

                        return ds.GetXml();
                    }
                }
            }
        }
    }

Bewerken:toegevoegd met behulp van blok rond de DataSet.



  1. complexe query kost te veel tijd om over te zetten

  2. PostgreSQL 9.2 - Converteer TEXT json-tekenreeks naar het type json/hstore

  3. postgreSQL Fibonacci-reeks - Query heeft geen bestemming voor resultaatgegevens

  4. Welke python 3-bibliotheek moet ik gebruiken voor MySQL?