{"id":13,"date":"2009-10-05T09:17:20","date_gmt":"2009-10-05T09:17:20","guid":{"rendered":"http:\/\/anyons.net\/dev\/?p=13"},"modified":"2022-07-12T14:49:31","modified_gmt":"2022-07-12T05:49:31","slug":"jet-oledb-connect-sample-using-dataadapter","status":"publish","type":"post","link":"https:\/\/anyons.net\/?p=13","title":{"rendered":"JET OLEDB Connect Sample using DataAdapter"},"content":{"rendered":"<pre class=\"lang:c# decode:true \">#region Using directives\n\nusing System;\nusing System.Collections.Generic;\nusing System.ComponentModel;\nusing System.Data;\nusing System.Data.OleDb;\nusing System.Drawing;\nusing System.Windows.Forms;\n\n#endregion\n\nnamespace UsingADOManagedProvider\n{\n\tpartial class ADONetForm1 : Form\n\t{\n\t\tpublic ADONetForm1( )\n\t\t{\n\t\t\tInitializeComponent( );\n\n\t\t\t\/\/ connect to Northwind Access database\n\t\t\tstring connectionString = \"provider=Microsoft.JET.OLEDB.4.0; \" + \"data source = c:\\nwind.mdb\";\n\n\t\t\t\/\/ get records from the customers table\n\t\t\tstring commandString = \"Select CompanyName, ContactName from Customers\";\n\n\t\t\t\/\/ create the data set command object\n\t\t\t\/\/ and the DataSet\n\n\t\t\tOleDbDataAdapter DataAdapter = new OleDbDataAdapter( commandString, connectionString );\n\n\t\t\tDataSet DataSet = new DataSet( );\n\n\t\t\t\/\/ fill the data set object\n\t\t\tDataAdapter.Fill( DataSet, \"Customers\" );\n\n\t\t\t\/\/ Get the one table from the DataSet\n\t\t\tDataTable dataTable = DataSet.Tables[0];\n\n\t\t\t\/\/ for each row in the table, display the info\n\t\t\tforeach ( DataRow dataRow in dataTable.Rows )\n\t\t\t{\n\t\t\t\tlbCustomers.Items.Add( dataRow[\"CompanyName\"] + \" (\" + dataRow [\"ContactName\"] + \")\" );\n\t\t\t}\n\t\t}\n\t}\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>#region Using directives using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Windows.Forms; #endregion namespace UsingADOManagedProvider { partial class ADONetForm1 : Form { public ADONetForm1( ) { InitializeComponent( ); \/\/ connect to Northwind Access database string connectionString = &#8220;provider=Microsoft.JET.OLEDB.4.0; &#8221; + &#8220;data source = c:\\nwind.mdb&#8221;; \/\/ get records from the customers [&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[96],"tags":[31,108,106],"class_list":["post-13","post","type-post","status-publish","format-standard","hentry","category-programming","tag-csharp","tag-mdb","tag-oledb","odd"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JET OLEDB Connect Sample using DataAdapter - anydragon<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/anyons.net\/?p=13\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JET OLEDB Connect Sample using DataAdapter - anydragon\" \/>\n<meta property=\"og:description\" content=\"#region Using directives using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Windows.Forms; #endregion namespace UsingADOManagedProvider { partial class ADONetForm1 : Form { public ADONetForm1( ) { InitializeComponent( ); \/\/ connect to Northwind Access database string connectionString = &quot;provider=Microsoft.JET.OLEDB.4.0; &quot; + &quot;data source = c:nwind.mdb&quot;; \/\/ get records from the customers [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/anyons.net\/?p=13\" \/>\n<meta property=\"og:site_name\" content=\"anydragon\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:published_time\" content=\"2009-10-05T09:17:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-12T05:49:31+00:00\" \/>\n<meta name=\"author\" content=\"anydragon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@anydragon\" \/>\n<meta name=\"twitter:site\" content=\"@anydragon\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"anydragon\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=13#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=13\"},\"author\":{\"name\":\"anydragon\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"headline\":\"JET OLEDB Connect Sample using DataAdapter\",\"datePublished\":\"2009-10-05T09:17:20+00:00\",\"dateModified\":\"2022-07-12T05:49:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=13\"},\"wordCount\":6,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"keywords\":[\"csharp\",\"mdb\",\"oledb\"],\"articleSection\":[\"Programming\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=13#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=13\",\"url\":\"https:\\\/\\\/anyons.net\\\/?p=13\",\"name\":\"JET OLEDB Connect Sample using DataAdapter - anydragon\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\"},\"datePublished\":\"2009-10-05T09:17:20+00:00\",\"dateModified\":\"2022-07-12T05:49:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=13#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=13\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=13#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/anyons.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JET OLEDB Connect Sample using DataAdapter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\",\"url\":\"https:\\\/\\\/anyons.net\\\/\",\"name\":\"anydragon\",\"description\":\"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang\",\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/anyons.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\",\"name\":\"anydragon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"url\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"contentUrl\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"width\":2560,\"height\":1440,\"caption\":\"anydragon\"},\"logo\":{\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\"},\"sameAs\":[\"http:\\\/\\\/anyons.net\",\"https:\\\/\\\/www.facebook.com\\\/anydragon\",\"https:\\\/\\\/x.com\\\/anydragon\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCr78KWpvmk398vPfpUTWNLg\"],\"url\":\"https:\\\/\\\/anyons.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JET OLEDB Connect Sample using DataAdapter - anydragon","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:\/\/anyons.net\/?p=13","og_locale":"ko_KR","og_type":"article","og_title":"JET OLEDB Connect Sample using DataAdapter - anydragon","og_description":"#region Using directives using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Windows.Forms; #endregion namespace UsingADOManagedProvider { partial class ADONetForm1 : Form { public ADONetForm1( ) { InitializeComponent( ); \/\/ connect to Northwind Access database string connectionString = \"provider=Microsoft.JET.OLEDB.4.0; \" + \"data source = c:nwind.mdb\"; \/\/ get records from the customers [...]","og_url":"https:\/\/anyons.net\/?p=13","og_site_name":"anydragon","article_publisher":"https:\/\/www.facebook.com\/anydragon","article_author":"https:\/\/www.facebook.com\/anydragon","article_published_time":"2009-10-05T09:17:20+00:00","article_modified_time":"2022-07-12T05:49:31+00:00","author":"anydragon","twitter_card":"summary_large_image","twitter_creator":"@anydragon","twitter_site":"@anydragon","twitter_misc":{"\uae00\uc4f4\uc774":"anydragon","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/anyons.net\/?p=13#article","isPartOf":{"@id":"https:\/\/anyons.net\/?p=13"},"author":{"name":"anydragon","@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"headline":"JET OLEDB Connect Sample using DataAdapter","datePublished":"2009-10-05T09:17:20+00:00","dateModified":"2022-07-12T05:49:31+00:00","mainEntityOfPage":{"@id":"https:\/\/anyons.net\/?p=13"},"wordCount":6,"commentCount":0,"publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"keywords":["csharp","mdb","oledb"],"articleSection":["Programming"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/anyons.net\/?p=13#respond"]}]},{"@type":"WebPage","@id":"https:\/\/anyons.net\/?p=13","url":"https:\/\/anyons.net\/?p=13","name":"JET OLEDB Connect Sample using DataAdapter - anydragon","isPartOf":{"@id":"https:\/\/anyons.net\/#website"},"datePublished":"2009-10-05T09:17:20+00:00","dateModified":"2022-07-12T05:49:31+00:00","breadcrumb":{"@id":"https:\/\/anyons.net\/?p=13#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/anyons.net\/?p=13"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/anyons.net\/?p=13#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/anyons.net\/"},{"@type":"ListItem","position":2,"name":"JET OLEDB Connect Sample using DataAdapter"}]},{"@type":"WebSite","@id":"https:\/\/anyons.net\/#website","url":"https:\/\/anyons.net\/","name":"anydragon","description":"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang","publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/anyons.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":["Person","Organization"],"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b","name":"anydragon","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","url":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","contentUrl":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","width":2560,"height":1440,"caption":"anydragon"},"logo":{"@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg"},"sameAs":["http:\/\/anyons.net","https:\/\/www.facebook.com\/anydragon","https:\/\/x.com\/anydragon","https:\/\/www.youtube.com\/channel\/UCr78KWpvmk398vPfpUTWNLg"],"url":"https:\/\/anyons.net\/?author=1"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":15,"url":"https:\/\/anyons.net\/?p=15","url_meta":{"origin":13,"position":0},"title":"ORACLE Connect Sample using DataAdapter without TNS","author":"anydragon","date":"2009\ub144 10\uc6d4 05\uc77c","format":false,"excerpt":"#region Using directives using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.OleDb; using System.Drawing; using System.Windows.Forms; #endregion namespace UsingADOManagedProvider { partial class ADONetForm1 : Form { public ADONetForm1( ) { InitializeComponent( ); \/\/ connect to Northwind Access database string connectionString = \"Data Source=(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL\u2026","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":18,"url":"https:\/\/anyons.net\/?p=18","url_meta":{"origin":13,"position":1},"title":"OLE DB\ub85c oracle\uc774\uac74 MSSQL\uc774\uac74 \ub370\uc774\ud130\ub97c \uac00\uc838\uc624\uae30 \uc704\ud55c \uae30\ucd08 \ucf54\ub4dc","author":"anydragon","date":"2009\ub144 10\uc6d4 09\uc77c","format":false,"excerpt":"private OleDbDataReader rd; private OleDbConnection Conn; private string strRet; private OleDbCommand cmd; private StringBuilder sbSQL; private OleDbParameter paramnSeq; try { \/\/ SQLOLEDB MSDAORA Conn = new OleDbConnection(\"Provider=MSDAORA;Data Source=(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.xxx )(PORT = 1521)))(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = GROUP))); User Id =;\u2026","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":270,"url":"https:\/\/anyons.net\/?p=270","url_meta":{"origin":13,"position":2},"title":"SQL Injection \ubc29\uc5b4","author":"anydragon","date":"2012\ub144 02\uc6d4 20\uc77c","format":false,"excerpt":"\ucd9c\ucc98 : http:\/\/forums.asp.net\/t\/1254125.aspx \ub97c \ubcf4\uba74 ASP.NET 1.1\uc774\ub0d0 2.0 \uc774\ub0d0\uc5d0 \ub530\ub77c \uac01\uac01 \uc774\ub807\uac8c \ud558\ub77c\uace0 \ud55c\ub2e4. \uc544\uc9c1\uc740 \ub09c web.config\uac00 \uc775\uc219\uce58 \uc54a\uc544\uc11c \uadf8\ub7f0\uc9c0 1.1 \ubc29\uc2dd\uc73c\ub85c \ud558\uba74 \uc798 \ub418\ub294\ub370 2.0 \ubc29\uc2dd\uc73c\ub85c\ub294 \uc798 \uc548\ub41c\ub2e4. -_- ASP.NET 1.1 C# global.asax using System.Globalization; \/\/Defines the set of characters that will be checked. \/\/You can add to this\u2026","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":439,"url":"https:\/\/anyons.net\/?p=439","url_meta":{"origin":13,"position":3},"title":"outlook\ub0b4 icloud\ub0b4 \uc5f0\ub77d\ucc98\uc758 \ud45c\uc2dc\ubc29\ubc95 \ubcc0\uacbd","author":"anydragon","date":"2012\ub144 08\uc6d4 18\uc77c","format":false,"excerpt":"Sub \ud45c\uc2dc\ubc29\ubc95\ubcc0\uacbd() Dim objOL As Outlook.Application Dim objNS As Outlook.NameSpace Dim objContact As Outlook.ContactItem Dim objItems As Outlook.Items Dim objContactsFolder As Outlook.MAPIFolder Dim objICloudFolder As Outlook.MAPIFolder Dim obj As Object Dim strFirstName As String Dim strLastName As String Dim strName As String On Error Resume Next Set objOL = CreateObject(\"Outlook.Application\")\u2026","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1266,"url":"https:\/\/anyons.net\/?p=1266","url_meta":{"origin":13,"position":4},"title":"mybatis.net \uc790\ub8cc\ud615","author":"anydragon","date":"2017\ub144 02\uc6d4 17\uc77c","format":false,"excerpt":"CLR Type Object\/Map Property Mapping Result Class\/Parameter Class** Type Alias** System.ArrayList Yes Yes list System.Boolean Yes Yes Boolean, bool System.Byte Yes Yes Byte, byte System.Char Yes Yes Char, char System.DateTime Yes Yes dateTime, date System.Decimal Yes Yes Decimal, decimal System.Double Yes Yes Double, double System.Guid Yes Yes guid System.Hashtable Yes\u2026","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":263,"url":"https:\/\/anyons.net\/?p=263","url_meta":{"origin":13,"position":5},"title":"MyBatis.Net &#8211; SQL \ucffc\ub9ac \uc774\uc058\uac8c(?) \ucd9c\ub825","author":"anydragon","date":"2012\ub144 01\uc6d4 18\uc77c","format":false,"excerpt":"iBatis.Net\uc5d0\uc11c \ucffc\ub9ac\ub97c \ub85c\uadf8\ub85c \ucd9c\ub825\ud558\uba74 \uc8fd~ \ud55c\uc904\ub85c\ub9cc \ub098\uc628\ub2e4. \uc774\ub54c \uac00\ub3c5\uc131\uc744 \ub192\uc774\uae30 \uc704\ud574\uc11c iBatis.Net\uc758 \ucf54\ub4dc\uc5d0\uc11c \uc544\ub798\ub97c \ubcc0\uacbd\ud55c\ub2e4. DataMapper \ud504\ub85c\uc81d\ud2b8\uc758 DomSqlMapBuilder \ud074\ub798\uc2a4\uc5d0\uc11c ParseDynamicTags() \uba54\uc18c\ub4dc... \/\/string data = child.InnerText.Replace('n', ' ').Replace('r', ' ').Replace('t', ' '); \/\/ \uc8fc\uc11d\ucc98\ub9ac!! string data = child.InnerText.Replace('t', ' '); 2008-10-24 11:39:24,281 - Statement Id: [select_categories] Prepared SQL: [select CategoryID, CategoryName,\u2026","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/13","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=13"}],"version-history":[{"count":0,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/13\/revisions"}],"wp:attachment":[{"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=13"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=13"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=13"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}