• Comega vs ADO.net


        Cω是微软研究院对下一代语言的探索。它扩展了C#的功能,更好的支持数据访问(SQL和XML)和并发控制。
    Cω的希望能方便的开发出更加可靠且维护性更好的软件,其中一个重要的概念就是"尽早的发现错误"。
    在下面的一个数据库查询的例子中将很好的体现出这一点。

        现在我想得到一个在某个城市的员工名字的列表。(就使用SQL-Server预装的Northwind数据库)
    下面给出最简单的实现:

             SqlDataAdapter da = new SqlDataAdapter(
          
    "SELECT * FROM Employees WHERE City='"+city+"'", nwindConn );
    DataSet ds 
    = new DataSet();
          da.Fill(ds,
    "Employees");
          
    foreach (DataRow dr in ds.Tables["Employees"].Rows)
          
    {
                
    string name = dr["LastName"].ToString();
    int id = (int)dr["EmployeeID"];
                Console.WriteLine( id 
    + "" + name);
          }
     


        让我们来看看有哪些地方容易出错:
    1. city参数可能会被SQL注入攻击利用.
    2. 数据类型是弱类型,需要强制转换类型,容易出现Runtime error.
    3. 表名和列名都是文字,不是类型变量。编译器无法做检查,容易出现Runtime error.
       (想必不少人碰到过写错表名,导致数据库访问出错,而debug n久的事情.)
    4. 查询语句也是文字,同样无法通过编译检查是否出错,容易出现Runtime error.

        通过使用SqlParameters以及Typed DataSet我们可以避免前三个问题

             SqlDataAdapter da = new SqlDataAdapter(
                
    "SELECT * FROM Employees WHERE City= @city", nwindConn );
          SqlParameter cityParam 
    = da.SelectCommand.Parameters.Add("@city", SqlDbType.VarChar, 80);
          cityParam.Value 
    = city;
          NorthwindDataSet ds 
    = new NorthwindDataSet();
          da.Fill(ds, ds.Employees.TableName );
          
    foreach (NorthwindDataSet.EmployeesRow dr in ds.Employees.Rows)
          
    {
                
    string name = dr.LastName;
                
    int id = dr.EmployeeID;
                Console.WriteLine( id 
    + "" + name);
          }


        但是第四个问题仍没有解决。也许你想到了 SQL stored procedure,就像下面这样: 

    CREATE PROCEDURE EmployeesForCity
    @City 
    nvarchar(80)  
       AS
    SELECT EmployeeID, LastName FROM Employees WHERE City = @City


           SqlCommand cmd = new SqlCommand( "dbo.EmployeesForCity", nwindConn );
          cmd.CommandType 
    = CommandType.StoredProcedure;
          SqlParameter cityParam 
    = cmd.Parameters.Add("@city", SqlDbType.VarChar, 80);
          cityParam.Value 
    = city;
          SqlDataAdapter da 
    = new SqlDataAdapter( cmd );
          NorthwindDataSet ds 
    = new NorthwindDataSet();
          da.Fill(ds, ds.EmployeesForCity.TableName );
          
    foreach (NorthwindDataSet.EmployeesForCityRow dr in ds.EmployeesForCity.Rows)
          
    {
                
    string name = dr.LastName;
                
    int id = dr.EmployeeID;
                Console.WriteLine( id 
    + "" + name);
          }


        SQL查询语句虽然不能在编译器检查,但是至少我们可以先在SQL-server中验证stored procedure,
    再运行我们的程序,比Runtime error好多了。但是万一stored procedure改了,或者是数据库改了,
    那我们又会看到Runtime error。问题的根本在于我们的代码和数据库的联系实在是太弱了。对于一
    个小程序就如此容易出现问题,那么对于那种和数据库紧密联系的大型应用就更别谈了。

    再来看看C-omega的解决方案

            rows = select * from DB.Employees where City == city;             
          
    foreach( row in rows ) 
          
    {
                
    string name = row.LastName.Value;
                
    int id = row.EmployeeID.Value;
                Console.WriteLine( id.ToString() 
    + "" + name);
          }


        以上代码需要引起注意的地方:
    1. 可以将本地变量city直接放入SQL语句,不会被SQL注入攻击。
    2. 结果集是强类型的,意味着在程序编译的时候我们就知道数据库的结构,甚至可以使用VS.net
    所带的智能感知(自动完成)功能。
    3. 在rows以及row前面甚至没有使用类型名,而它们却都是强类型的。
    4. 不再含有文字类型的信息,避免了人为输入错误。
    5. 在程序编译的时候就已经和数据库连接,当数据库发生变化的时候,在编译器就会报错。

    如果你不喜欢SQL的语法,你甚至用三行代码就能搞定以上所有任务。

       DB.Employees [City==city].
         Console.WriteLine( it.EmployeeID 
    + "" + t.LastName );
          }
    ;


        从c++到C#我们常听见的一句话就是C#是类型安全的。何谓类型安全?就是.Net Runtime支持编译期的类型检查。也就是尽量让Runtime error变成Compile error,可以看出Cω在这个方面更进了一步。

    注:鉴于个人水平以及资料方面的原因对其内部机制实现笔者并为做深入研究。

  • 相关阅读:
    xwalkview 替换掉webview 注意事项
    rsyslog Properties 属性:
    Basic Structure 基本结构:
    Crosswalk 集成到 Android Studio
    awk if 判断
    Important System Configuration 导入系统配置:
    Heap size check 堆大小检查
    Bootstrap Checks 抽样检查:
    Important Elasticsearch configuration 导入Elasticsearch 配置
    while 退出循环
  • 原文地址:https://www.cnblogs.com/modou/p/133786.html
Copyright © 2020-2023  润新知