从C#OracleDB运行SELECT时没有数据

时间:2012-04-10 09:42:09

标签: c# oracle

我有一个从Oracle数据库读取的C#应用​​程序,但我的应用程序中没有数据。如果我直接从管理工具运行相同的SELECT语句,它将返回数据。

static void Selectexample()
    {
       string connStr = @"Data Source=localhost;user id=system;password=123456";


       DbProviderFactory dbFactory= DbProviderFactories.GetFactory("System.Data.OracleClient"); 

        DbConnection con = dbFactory.CreateConnection();
        con.ConnectionString = connStr;

        string sql;
        sql = "SELECT * FROM person";

        DbCommand cmd = dbFactory.CreateCommand();
        cmd.Connection = con;
        cmd.CommandText = sql;


        try
        {   
            con.Open();


            DbDataReader reader = cmd.ExecuteReader();


            string headline = "";
            for (int i = 0; i < reader.FieldCount; i++)
            {
                string s = reader.GetName(i);
                headline += s.PadLeft(20) + " | ";
            }

            Console.WriteLine(headline);


            while (reader.Read())
            {

                string line = "";
                string s1 = (string)reader[0];
                string s2 = (string)reader[1];

                line += ("");
                line += s1.PadLeft(20) + " | ";
                line += s2.PadLeft(20) + " | ";

                Console.WriteLine(line);

            }
        }
        catch (DbException ex)
        {
            Console.WriteLine("fejl: " + ex.Message);
        }
        finally
        {   
            con.Close();
        }

        Console.WriteLine();
        Console.WriteLine("---");
    }

Person的表定义:

create table person
(
cpr char(10) primary key,
name varchar(25),
job varchar(25),
salary int,
zip char(4),
foreign key (zip) references zipcode(zip)
);

我在x64 Windows上使用x86 Oracle驱动程序运行.Net 3.0

1 个答案:

答案 0 :(得分:0)

感谢大家的建议。事实证明,Management Studio在插入后不会立即提交数据。您必须在提交数据之前关闭该工具。现在我的数据显示在我的应用程序中。