w********n 发帖数: 137 | 1 struct items{
string type;
integer value;
}
struct record
{
string name;
string address;
list or array of struct items
}
如果搭建一个服务器,有页面让用户提交一些信息,格式如上面定义
的 record 那样,实用什么数据库存储管理比较简单容易?
象查询,导入,导出,
增加、删除 record的 item list(不删除record 本身)
如果目前实用 Google App Engine(python), 但是以后可能使用独立的服务器,
所以希望数据能够容易的import, export.
另外,最好容易通过编辑器手工修改,像 csv xml 文件那样。
本人C/c++ 熟悉,但是网站相关的了解不多。
多谢 | w*****g 发帖数: 1415 | 2 .csv file and xml file are good enough if you are familiar with them.
Or mysql. You can use phpmyadmin to edit data if you don't want to build an
edit page for yourself. | i****i 发帖数: 15 | 3 rule of thumb, always use the database to store the data. |
|