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