zoukankan      html  css  js  c++  java
  • 可以这样操作Xml

    Xml Data Source

    simple xml data source to be used as a replacement to sql server for a poor

    Project Description
    The framework will be used for creating easy and simple xml data source to be used as a replacement to sql server for a poor, simple, non-complicated environment. All Access to the data is done via simple sql queries as "select" "insert" "update" and "delete". All queries are executed with simplistic assumptions and best try to return results without any exceptions.

    [Test]
    public void TestCreateTable3()
    {
    XmlParsedCommand command
    = SqlParserWrapper.ParseCommandBeta("create table users (id,firstname)");
    Assert.IsTrue(command.Type
    == XmlParsedCommand.CommandType.Create, "command type");
    Assert.IsTrue(command.TableName
    == "users", "table name");
    Assert.IsTrue(command.Fields.Contains(
    "id"));
    Assert.IsTrue(command.Fields.Contains(
    "firstname"));
    }
    DropTable
    Insert
    Update
    Delete
    Select

    http://www.codeplex.com/XmlData

    为成功找方法,不为失败找借口!
  • 相关阅读:
    第6章 解决问题 6-1 机器学习解决问题(1)
    第5章 常见的算法和分类 5-2 机器学习常见算法和分类(2)
    Linux中Shell数组的笔记
    Linux中Shell数组的笔记
    Linux中Shell中取消变量和特殊变量的笔记
    Linux中Shell中取消变量和特殊变量的笔记
    Linux实现MYSQl数据库的定时备份
    Linux中su和sudo的用法整理
    Linux用户组笔记整理
    Linux 用户管理命令笔记
  • 原文地址:https://www.cnblogs.com/wt0731/p/1337572.html
Copyright © 2011-2022 走看看