{"id":4108,"date":"2021-03-05T04:44:59","date_gmt":"2021-03-05T04:44:59","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=4108"},"modified":"2021-03-05T04:44:59","modified_gmt":"2021-03-05T04:44:59","slug":"sqlite-database-in-react-native-ios","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/","title":{"rendered":"Sqlite database in React Native (IOS)"},"content":{"rendered":"<p>SQLite3 is a native Plugin for React local for both Android (classic and local), iOS, and windows. Foundation of this library is primarily based on Chris Brody&#8217;s Cordova SQLite plugin.<\/p>\n<h2>Features:<\/h2>\n<ol>\n<li>iOS and Android supported via identical JavaScript API.<\/li>\n<li>Android in pure Java and Native modes<\/li>\n<li>SQL transactions<\/li>\n<li>JavaScript interface via plain callbacks or Promises.<\/li>\n<li>Pre-populated SQLite database import from software bundle and sandbox<\/li>\n<\/ol>\n<p>The library has been examined with React 16.2 (and earlier) and XCode 7,8,9 &#8211; it works well out of the container with no need of code adjustments. For XCode 7,8 vs. XCode 6, the most effective distinction is that SQLite ios library call suffix is tbd in place of dylib.<br \/>\nVersion 3.2 is the primary version well-matched with RN 0.40.<\/p>\n<h3>Installation:<\/h3>\n<p><code>npm install --save react-native-sqlite-storage<\/code><\/p>\n<p>Then observe the commands in your platform to link react-native-sqlite-garage into your mission<\/p>\n<h3>Ios:<\/h3>\n<p><strong>Preferred technique<\/strong><br \/>\n** React native 0.60 and above ** Run <em style=\"color:red;\">cd ios &#038;&#038; pod install &#038;&#038; cd &#8230;<\/em> Linking is not required in React local 0.60 and above<br \/>\n** React native 0.59 and underneath **<\/p>\n<p><strong>Step 1. set up Dependencies<br \/>\nWith CocoaPods:<\/strong><br \/>\nUpload this in your Podfile which must be placed in the ios assignment subdirectory<br \/>\n<code>pod 'React', :path => '..\/node_modules\/react-native'<br \/>\npod 'react-native-sqlite-storage', :path => '..\/node_modules\/react-native-sqlite-storage'<\/code><\/p>\n<p>Or use the pattern Podfile blanketed within the package deal by means of copying it over to the ios subdirectory and changing AwesomeProject internal of it with the call of your RN assignment.<br \/>\nRefresh the Pods set up<br \/>\n<code>pod install<\/code><br \/>\nOR<br \/>\n<code>pod update<\/code><br \/>\nAchieved, bypass to Step 2.<\/p>\n<p><strong>Without CocoaPods:<\/strong><br \/>\nThis command has to be achieved inside the root directory of your RN mission<br \/>\n<code>react-native link<\/code><\/p>\n<p>rnpm and xcode are dependencies of this mission and need to get mounted with the module but in case of any difficulty in configuring rnpm hyperlink and rnpm\/xcode aren&#8217;t already mounted you can attempt to install it globally as follows:<\/p>\n<p><code>npm -g install rnpm xcode<\/code><\/p>\n<p>After linking project should like this:<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react-1.png\" alt=\"react\"\/><\/p>\n<p><strong>Step 1a. If rnpm link does not work for you you can try manually linking according to the instructions below:<\/strong><br \/>\nDrag the SQLite Xcode project as a dependency project into your React Native XCode project<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react1.png\" alt=\"react1\"\/><\/p>\n<p><strong>XCode SQLite libraries dependency set up<\/strong><br \/>\nAdd libSQLite.a (from Workspace area) to the specified Libraries and Frameworks. also add sqlite3.zero.tbd (XCode 7) or libsqlite3.0.dylib (XCode 6 and earlier) inside the identical style the usage of Required Libraries view (Do now not simply add them manually because the construct paths will now not be properly set)<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react2.png\" alt=\"react2\"\/><\/p>\n<p><strong>Step 2. Application JavaScript require<\/strong><br \/>\nAdd <em style=\"color:#fff; background:#000;\">var SQLite = require(&#8216;react-native-sqlite-storage&#8217;)<\/em> to your index.ios.js<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react3.png\" alt=\"react3\" \/><\/p>\n<p><strong>Step 3.  Write application JavaScript code using the SQLite plugin<\/strong><br \/>\nAdd JS application code to use SQLite API in your index.ios.js etc. Here is some sample code. For a fully working example see test\/index.ios.callback.js. Please note that Promise based API is now maintained as well with full examples in the working React Native app under test\/index.ios.promise.js<\/p>\n<p><code>errorCB(err) {<br \/>\n  console.log(\"SQL Error: \" + err);<br \/>\n},<br \/>\nsuccessCB() {<br \/>\n  console.log(\"SQL executed fine\");<br \/>\n},<br \/>\nopenCB() {<br \/>\n  console.log(\"Database OPENED\");<br \/>\n},<br \/>\nvar db = SQLite.openDatabase(\"test.db\", \"1.0\", \"Test Database\", 200000, openCB, errorCB);<br \/>\ndb.transaction((tx) => {<br \/>\n  tx.executeSql('SELECT * FROM Employees a, Departments b WHERE a.department = b.department_id', [], (tx, results) => {<br \/>\n      console.log(\"Query completed\");<br \/>\n      \/\/ Get rows with Web SQL Database spec compliance.<br \/>\n      var len = results.rows.length;<br \/>\n      for (let i = 0; i < len; i++) {\n        let row = results.rows.item(i);\n        console.log(`Employee name: ${row.name}, Dept Name: ${row.deptName}`);\n      } \n      \/\/ Alternatively, you can use the non-standard raw method. \n      \/*\n        let rows = results.rows.raw(); \/\/ shallow copy of rows Array \n        rows.map(row => console.log(`Employee name: ${row.name}, Dept Name: ${row.deptName}`));<br \/>\n      *\/<br \/>\n    });<br \/>\n});<\/code><\/p>\n<h3>Setting up your project to import a pre-populated SQLite database from software for iOS<\/h3>\n<ul>\n<li>Step 1 &#8211; Create &#8216;www&#8217; folder.<br \/>\nCreate a folder called &#8216;www&#8217; (yes have to be known as exactly that else things won&#8217;t  paintings) in the mission folder through Finder<\/li>\n<li>Step 2 &#8211; Create the database document<br \/>\nreplica\/paste your pre-populated database report into the &#8216;www&#8217; folder. give it an identical name you&#8217;ll use in openDatabase call to your software<\/li>\n<li>Step 3 &#8211; add a document to a task<br \/>\nin XCode, right-click on the main folder and pick out upload files to &#8216;your task name&#8217;<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react4.png\" alt=\"react4\"\/>\n<\/li>\n<li>Step 4 &#8211; pick out files to add<br \/>\nin the add files conversation, navigate to the &#8216;www&#8217; listing you created in Step 1, choose it, ensure you take a look at the option to Create Folder Reference<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react5.png\" alt=\"react5\" \/><br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react6.png\" alt=\"react6\" \/>\n<\/li>\n<li>Step 5 &#8211; Verify project structure<br \/>\nensure your project structure after preceding steps are completed looks like this<br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/react7.png\" alt=\"react7\"\/>\n<\/li>\n<li>Step 6 &#8211; adjust openDatabase call<br \/>\nModify your openDatabase call in your application including createFromLocation param. In case you named your database report in step 2 &#8216;testDB&#8217; the openDatabase call should seem like something like this:<\/p>\n<p><code>...<br \/>\n  1.SQLite.openDatabase({name : \"testDB\", createFromLocation : 1}, okCallback,errorCallback);<br \/>\n  \/\/ default - if your folder is called www and data file is named the same as the dbName - testDB in this example<br \/>\n  2.SQLite.openDatabase({name : \"testDB\", createFromLocation : \"~data\/mydbfile.sqlite\"}, okCallback,errorCallback);<br \/>\n  \/\/ if your folder is called data rather than www or your filename does not match the name of the db<br \/>\n  3.SQLite.openDatabase({name : \"testDB\", createFromLocation : \"\/data\/mydbfile.sqlite\"}, okCallback,errorCallback);<br \/>\n  \/\/ if your folder is not in app bundle but in app sandbox i.e. downloaded from some remote location.<br \/>\n  ...<\/code>\n<\/li>\n<\/ul>\n<h3>Opening a database<\/h3>\n<p>warning: the default location on iOS has changed in model 3.0.0 &#8211; it is now a no-sync location as mandated by Apple so the release is backward incompatible.<br \/>\nTo open a database in default no-sync place (affects iOS only)::<\/p>\n<p><code>SQLite.openDatabase({name: 'my.db', location: 'default'}, successcb, errorcb);<\/code><\/p>\n<p>To specify a different location (affects iOS only):<\/p>\n<p><code>SQLite.openDatabase({name: 'my.db', location: 'Library'}, successcb, errorcb);<\/code><\/p>\n<p>in which the location choice can be set to one of the following picks:<\/p>\n<ul>\n<li>default: Library\/LocalDatabase subdirectory &#8211; no longer seen to iTunes and no longer subsidized up with the aid of iCloud<\/li>\n<li>Library: Library subdirectory &#8211; backed up with the aid of iCloud, now not visible to iTunes<\/li>\n<li>documents: documents subdirectory &#8211; visible to iTunes and backed up by means of iCloud<\/li>\n<li>Shared: app institution&#8217;s shared field &#8211; see subsequent section<\/li>\n<li>The unique webSql fashion openDatabase still works and the region will implicitly default to &#8216;default&#8217; choice:<br \/>\n<code>SQLite.openDatabase(\"myDatabase.db\", \"1.0\", \"Demo\", -1);<\/code>\n<\/li>\n<\/ul>\n<p><small><em>Knowledge of .NET is quite rewarding in the IT industry. If you have got some skills in the .NET framework then a <a href=\"https:\/\/www.studysection.com\/c-sharp-net-azure-web-developer-advanced-diploma\">.NET certification<\/a> from StudySection can prove to be a good attachment with your resume. You can go for a foundation level certificate as well as an advanced level certificate in the .NET framework.<\/em><\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>SQLite3 is a native Plugin for React local for both Android (classic and local), iOS, and windows. Foundation of this<\/p>\n","protected":false},"author":1,"featured_media":4109,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[635,509],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Sqlite database in React Native (IOS) - StudySection Blog<\/title>\n<meta name=\"description\" content=\"SQLite3 is a native Plugin for React local for both Android, iOS, and windows. The library has been examined with React 16.2\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sqlite database in React Native (IOS) - StudySection Blog\" \/>\n<meta property=\"og:description\" content=\"SQLite3 is a native Plugin for React local for both Android, iOS, and windows. The library has been examined with React 16.2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-05T04:44:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/ios.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"Sqlite database in React Native (IOS)\",\"datePublished\":\"2021-03-05T04:44:59+00:00\",\"dateModified\":\"2021-03-05T04:44:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/\"},\"wordCount\":835,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"keywords\":[\"IOS\",\"React-Native\"],\"articleSection\":[\"Learn and Grow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/\",\"url\":\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/\",\"name\":\"Sqlite database in React Native (IOS) - StudySection Blog\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2021-03-05T04:44:59+00:00\",\"dateModified\":\"2021-03-05T04:44:59+00:00\",\"description\":\"SQLite3 is a native Plugin for React local for both Android, iOS, and windows. The library has been examined with React 16.2\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sqlite database in React Native (IOS)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Sqlite database in React Native (IOS) - StudySection Blog","description":"SQLite3 is a native Plugin for React local for both Android, iOS, and windows. The library has been examined with React 16.2","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/","og_locale":"en_US","og_type":"article","og_title":"Sqlite database in React Native (IOS) - StudySection Blog","og_description":"SQLite3 is a native Plugin for React local for both Android, iOS, and windows. The library has been examined with React 16.2","og_url":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2021-03-05T04:44:59+00:00","og_image":[{"width":300,"height":200,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/03\/ios.png","type":"image\/png"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"Sqlite database in React Native (IOS)","datePublished":"2021-03-05T04:44:59+00:00","dateModified":"2021-03-05T04:44:59+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/"},"wordCount":835,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"keywords":["IOS","React-Native"],"articleSection":["Learn and Grow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/","url":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/","name":"Sqlite database in React Native (IOS) - StudySection Blog","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2021-03-05T04:44:59+00:00","dateModified":"2021-03-05T04:44:59+00:00","description":"SQLite3 is a native Plugin for React local for both Android, iOS, and windows. The library has been examined with React 16.2","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/sqlite-database-in-react-native-ios\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Sqlite database in React Native (IOS)"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":2552,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/4108"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=4108"}],"version-history":[{"count":2,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/4108\/revisions"}],"predecessor-version":[{"id":4119,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/4108\/revisions\/4119"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/4109"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=4108"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=4108"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=4108"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}