我想使用 Android 从 XML 文件填充 SQLite 数据库。但我不想使用元素标签的名称作为我的数据库中的字段名称,而是我想使用元素属性的值,作为数据库中的字段名称(有时是记录值)和内容的子元素作为记录值。
让我通过提供一些关于 XML 的想法来尝试澄清一下:
<xml version="1.0" encoding="utf-8" ?>
<itemset>
<item item_identifier="identifier_code">
<metadata schema="core">
<property key="title">
<text lang="en">Title Text</text>
</property>
<property key="category">
<text lang="en">Book</text>
</property>
<property key="date">
<date>1985/2002</date>
</property>
<property key="language">
<text lang="en">English</text>
</property>
<property key="description">
<text lang="en">This is the description</text>
</property>
</metadata>
<metadata schema="another">
<property key="originator">
<text lang="en">The originator</text>
</property>
<!-- more property elements -->
</metadata>
<sequence>
<metadata schema="core">
<!-- similar to above -->
</metadata>
<metadata schema="another">
<!-- similar to above -->
</metadata>
<image filename="the file name">
<metadata schema="core">
<!-- similar to above -->
</metadata>
<metadata schema="another">
<!-- similar to above -->
</metadata>
<transcript lang="en">Translation of text on post card or whatever</transcript>
</image>
</secquence>
</item>
<item identifier="the identifier code here">
<!-- repeat of something similar above, I'll provide more xml should anyone ask for it -->
</item>
</itemset>
</xml>
从这里我想填充一个数据库,如下所示:
Table: metadata_core
|----|------------|----------|-----------|----------|-------------------------|-----------------|
| id | title | category | date | language | description | item_identifier |
|----|------------|----------|-----------|----------|-------------------------|-----------------|
| 1 | Title Text | Book | 1985/2002 | English | This is the description | identifier_code |
|----|------------|----------|-----------|----------|-------------------------|-----------------|
Table: metadata_another <similar to metadata_core table>
Table: transcript
|----|----------------------------------------------|-----------------|
| id | transcript | item_identifier |
|----|----------------------------------------------|-----------------|
| 1 | Translation of text on post card or whatever | identifier_code |
|----|----------------------------------------------|-----------------|
Table: parent_elements
|----|---------|----------|------------|---------------|---------------|----------|-----------------|
| id | exhibit | type | md_core_id | md_another_id | transcript_id | resource | item_identifier |
|----|---------|----------|------------|---------------|---------------|----------|-----------------|
| 1 | 1 | sequence | 1 | 1 | null | false | identifier_code |
|----|---------|----------|------------|---------------|---------------|----------|-----------------|
Table: child_elements
|----|-----------|----------|------------|---------------|---------------|----------|-----------------|
| id | parent_id | type | md_core_id | md_another_id | transcript_id | resource | item_identifier |
|----|-----------|----------|------------|---------------|---------------|----------|-----------------|
| 1 | 1 | image | 2 | 2 | 1 | filename | identifier_code |
|----|-----------|----------|------------|---------------|---------------|----------|-----------------|
这是可能的还是我应该修改我的数据库设计?