tags:

views:

35

answers:

1
<h1>Abasement</h1>
<hw>A*base"ment</hw> <tt>(#)</tt>, 
<tt>n.</tt> 
<ety>[Cf. F. <ets>abaissement</ets>.]</ety> 
<def>The act of abasing, humbling, or bringing low; the state of being abased or humbled;humiliation.</def>

I have a file with definitions of words like this, enclosed in tags. I'd like to convert this to an SQLite database with the fields Word, Pronunciation, Part_Of_Speech, Etymology and Definition. Any help is appreciated.

[My first question here!]

+2  A: 

You can't just simply 'convert' it (unless there happens to be a tool out there that would do it for you). You have to create a SQLite database first and create a table for the data. Maybe name the table 'Words', then create columns for each field, and figure out how to do a SQL INSERT to get your data into it.

Silmaril89