如何在sqlite中读取格式化文件?

时间:2013-07-13 17:07:56

标签: sqlite

是否可以在SQLite中读取格式化文件?我有一个像这样的行的文件(下面两行):

   1921.300       .      .    <  0.030     .         .     .       .     .     550        1.6   1 Mrr1922  Jm   5     
   1973.220    158.     3.       0.240    0.002      .     .      1.5   0.5    620        5.1   1 Lab1974  S    4   

和这样的描述:

term       columns   format   description

date       008-017   f10.5    Observation date, in years.                  
tflag      019-019   a1       Flag for theta (position angle) measure.
.....................
etc.

我需要将此文件读入我的SQLite表。

1 个答案:

答案 0 :(得分:0)

我认为您可能想要做的是将文件转换为逗号或制表符分隔的文本(例如,通过加载到Excel然后导出)。然后在sqlite3:

.mode tabs
.import myfile.txt