2

多くのデータをmysqlデータベースに挿入したいのですが、もちろんテキストだけです。

たとえば、私は現在投稿を介して行ってinsertUser.php?user=asd&pass=asdas&email=asdasdおり、問題がなかった場合は応答が返されますが、今はupload膨大な量のデータを処理しようとしていますがinsertData.php?xml=string&userid=2、応答も大きく、時間がかかる場合がありますこれは主に3g (android & iOS)を使用する携帯電話アプリケーション用であるため、どちらがより効率的であり、まだ実行しているpost connectionsdirect mysql connection?

ありがとう。

4

1 に答える 1

1

以下の答えを確認してください

xmlbody = (NSString *)CFURLCreateStringByAddingPercentEscapes(
                                                                        NULL,
                                                                            (CFStringRef)xmlbody,
                                                                            NULL,
                                                                            (CFStringRef)@"!*'\"();:@&=+$,/?%#[]% ",
                                                                            kCFStringEncodingUTF8 );

NSMutableString *entirexmlbody=[[NSMutableString alloc]init ];
[entirexmlbody appendString:@"xml="];
[entirexmlbody appendString:xmlbody];

NSLog(@"posting XML Body after encoding--%@\n",xmlbody);

NSData *postData = [entirexmlbody dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d",[postData length]];
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:posturl]];

[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
NSURLConnection *conn=[[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
于 2013-03-11T13:02:15.897 に答える