zoukankan      html  css  js  c++  java
  • about store RecordField submit emptystring issue



    operate screenshot

     

    When click save button submit to change,trace store beforeStoreChanged eventHandler data no problem.



    But when store beforerecordInserted event handler new values changed empty string, when AfterInserted throw exception;




    Now I solve the problem changed Source Code file Store.cs


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    private void MakeInsertes(IDataSource ds, XmlDocument xml)
    {
    XmlNodeList insertingRecords = xml.SelectNodes("records/Created/record");
    string id = GetIdColumnName();
    foreach (XmlNode node in insertingRecords)
    {
    record = node;
    values = new SortedList(this.Reader.Reader.Fields.Count);
    keys = new SortedList();
    oldValues = new SortedList();
    foreach (RecordField field in this.Reader.Reader.Fields)
    {
    //modify by neo date:2011/6/9 emptystring convert to null
    XmlNode keyNode = node.SelectSingleNode(field.Name);
    if (String.IsNullOrEmpty(keyNode.InnerText))
    values[field.Name] = null;
    else
    values[field.Name] = keyNode != null ? keyNode.InnerText : null;
    }
    ……………

    I don't know that there are no other better solutions,So I hope to have your support


     

  • 相关阅读:
    游标和视图
    sql server 变量与集合运算
    sql server 流程控制
    sql server 基础查询和子查询
    数据库范式快速理解
    创建数据库与数据表
    SQL server 使用
    Android studio 下载依赖jar包慢
    java根据list数据通过接口姓名并填充
    【翻译】Promises/A+规范
  • 原文地址:https://www.cnblogs.com/neozhu/p/2080990.html
Copyright © 2011-2022 走看看