Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

एक्सकोड:आईओएस टेक्स्टफिल्ड से डेटा भेजने का सबसे आसान तरीका उदाहरण के लिए रिमोट डेटाबेस

आप केवल मूल रूप से डेटा एकत्र कर सकते हैं, फिर अपने PHP सर्वर पृष्ठ पर डेटा भेजने के लिए NSURLRequest / NSURLConnection का उपयोग कर सकते हैं।

//Example form with one php variable only. Use get URL argument notation to add more args.
NSString *rawStr = [NSString stringWithFormat:@"var=%@",textBox.text];
NSData *data = [rawStr dataUsingEncoding:NSUTF8StringEncoding];

NSURL *url = [NSURL URLWithString:@"http://myurl.com/script.php"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

[request setHTTPMethod:@"POST"];
[request setHTTPBody:data];

NSURLResponse *response;
NSError *err;
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];
NSLog(@"responseData: %@", responseData);



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. पदानुक्रम प्रदर्शन के लिए mysql क्वेरी सहायता

  2. भिन्न दिनांक स्वरूप के साथ एक CSV को MySQL में आयात करना

  3. एंड्रॉइड ऐप को MySQL डेटाबेस से कैसे कनेक्ट करें?

  4. कोड इग्नाइटर डायनेमिक रूटिंग

  5. चुनें COUNT () बनाम mysql_num_rows ();