blob: efa73591b9c46990902744992523c3da9f2e2fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if (YES)
{
NSString *sqlStr = [NSString stringWithFormat:@"INSERT INTO %@ (%@ , %@) VALUES
('%@','%@')"
, ContactsRemark_Table
, ContactsRemark_FollowId
, ContactsRemark_MarkName
, followId
, markName
];
}
|