Thread
:
Proper integration of telepathy accounts
View Single Post
Niwakame
2011-12-09 , 18:07
Posts: 120 | Thanked: 126 times | Joined on Nov 2011 @ Germany
#
81
No, you have a table "services" which includes the
19|msn|MSN|msn|IM
because that's your service. Select * from services; selects all fields of all entries of available services.
Code:
insert into accounts values (null, 'blargh@blubb.xyz', 'msn', 0);
inserts into the "accounts" table. If you type
Code:
select * from
accounts
;
you're selecting all accounts on your phone. Even your e-mail adresses should show up there.
It is normal for SQL queries to not give any output if everything goes well, so the entry should be there. Seems like you're selecting from the wrong table.
Quote & Reply
|
The Following User Says Thank You to Niwakame For This Useful Post:
IsaacDFP
Niwakame
View Public Profile
Send a private message to Niwakame
Find all posts by Niwakame