我们正在开发 arduino,它是 rfid 阅读器,当扫描 rfid 标签时,它当前正在接收诸如“1234”之类的数字。
当我们扫描 rfid 标签时,它将被输入到 couchdb,这是我们创建的数据库。
我们的问题是,我们想将一个名字与唯一的数字“1234”关联起来,这个关联应该存储在一个数据库中,这样
数据库(1);存储患者信息数据库(2);记录唯一编号
我们希望它,
1 : we scan the tag, "1234"
2. : the system queries the database(1) for "1234"
3. : the query replies "1234" with the patient name for example "Jack"
4. : post in database (2) patient name & time
问题是我们如何查询 database1 以获取要输入到 database2 的信息