dataset1.xsd

来自「图书管理系统,可以实现图书的增加,删除,修改,也可以实现用户的增加,删除,修改.」· XSD 代码 · 共 24 行

XSD
24
字号
<?xml version="1.0" standalone="yes"?>
<xs:schema id="DataSet1" targetNamespace="http://www.tempuri.org/DataSet1.xsd" xmlns:mstns="http://www.tempuri.org/DataSet1.xsd" xmlns="http://www.tempuri.org/DataSet1.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" attributeFormDefault="qualified" elementFormDefault="qualified">
  <xs:element name="DataSet1" msdata:IsDataSet="true" msdata:Locale="zh-CN">
    <xs:complexType>
      <xs:choice maxOccurs="unbounded">
        <xs:element name="user_info">
          <xs:complexType>
            <xs:sequence>
              <xs:element name="emailid" type="xs:string" minOccurs="0" />
              <xs:element name="lend" type="xs:float" minOccurs="0" />
              <xs:element name="password" type="xs:string" minOccurs="0" />
              <xs:element name="userid" msdata:AutoIncrement="true" type="xs:int" />
              <xs:element name="username" type="xs:string" minOccurs="0" />
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:choice>
    </xs:complexType>
    <xs:unique name="Constraint1" msdata:PrimaryKey="true">
      <xs:selector xpath=".//mstns:user_info" />
      <xs:field xpath="mstns:userid" />
    </xs:unique>
  </xs:element>
</xs:schema>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?