我在使用框架phonegap的地方开发应用程序移动,并使用将数据插入本地数据库我的问题是如何使用javascript为sqlite生成唯一标识符?
CREATE TABLE foobar (id uniqueidentifier, foo text, bar text, PRIMARY
KEY (id));
insert into foobar values (newid(), "Aaa", "Bbb");
id foo bar
___________________________________________________________
{00000109-0000-0010-8000-00AA006D2EA4} "Aaa" "Bbb"