{"id":12891,"date":"2021-01-20T20:55:53","date_gmt":"2021-01-21T01:55:53","guid":{"rendered":"https:\/\/panamahitek.com\/aprende-a-crear-bases-de-datos-sqlite\/"},"modified":"2021-03-27T18:48:11","modified_gmt":"2021-03-27T23:48:11","slug":"how-to-create-sqlite-databases","status":"publish","type":"post","link":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/","title":{"rendered":"How to create SQLite databases?"},"content":{"rendered":"<p style=\"text-align: justify;\">SQLite databases are a type of lightweight database that allows you to store, manage, and retrieve information using a command language with a syntax very similar to MySQL.\u00a0The main advantage of SQLite is that few resources are required to use it. The database consists of a file with a .db extension, in which all the information that we wish to store is stored.<\/p>\n<p style=\"text-align: justify;\">To create a database in SQLite, I recommend using a program called <strong>DB Browser for SQLite<\/strong>, which is available for free on Windows. This software can be downloaded at the following link: <a href=\"https:\/\/sqlitebrowser.org\/dl\/\">https:\/\/sqlitebrowser.org\/dl\/<\/a>.\u00a0Once downloaded and installed, we open it and we will have a simple and easy-to-use interface.<\/p>\n<figure id=\"attachment_12625\" aria-describedby=\"caption-attachment-12625\" style=\"width: 505px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-12892\" src=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite.png\" alt=\"\" width=\"505\" height=\"409\" srcset=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite.png 1036w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-300x243.png 300w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-1024x830.png 1024w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-768x623.png 768w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-696x564.png 696w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-518x420.png 518w\" sizes=\"auto, (max-width: 505px) 100vw, 505px\" \/><\/a><figcaption id=\"caption-attachment-12625\" class=\"wp-caption-text\">Ventana principal del software DB Browser for SQLite<\/figcaption><\/figure>\n<p style=\"text-align: justify;\">To create a database, just click on &#8220;New Database&#8221;. A window will open in which we are asked to select a location and a name. This will be the location and name of the database, which is ultimately a single file. In my case I called my database &#8220;test.db&#8221;.<\/p>\n<p style=\"text-align: justify;\">After that a window appears in which we must specify the name of a table. Here I am assuming that I am going to create a table to store temperature data.<\/p>\n<p style=\"text-align: justify;\"><a href=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-12627 aligncenter\" src=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2.png\" alt=\"\" width=\"637\" height=\"484\" srcset=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2.png 841w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2-300x228.png 300w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2-768x584.png 768w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2-80x60.png 80w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2-696x529.png 696w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-2-553x420.png 553w\" sizes=\"auto, (max-width: 637px) 100vw, 637px\" \/><\/a><\/p>\n<p style=\"text-align: justify;\">SQL-based databases have tables, which are internal structures for storing data. It is like having an Excel file, where there can be multiple worksheets in one file. The file is equivalent to the database and the spreadsheets are equivalent to the tables.<\/p>\n<p style=\"text-align: justify;\">Each table has a name and several data fields. Data fields are like columns in a spreadsheet. These tables are where the records are stored, which is the equivalent of the rows on a spreadsheet.<\/p>\n<p style=\"text-align: justify;\">In my case I have created a table called &#8220;<strong>Temperatura<\/strong>&#8221; (see image). This table will have the following data fields: <strong>id<\/strong>, <strong>temp<\/strong>, and <strong>time<\/strong>. In <strong>id<\/strong> the identification of each record is stored, something that is customary in databases. This field will have the following characteristics: PK (primary key), AI (auto increment), U (unique).<\/p>\n<p>Below I proceed to describe these characteristics:<\/p>\n<ul>\n<li style=\"text-align: justify;\"><strong>Primary key (PK):<\/strong> The primary key is something that is required in every table. Usually the<strong> id<\/strong> field is used as a key.<\/li>\n<li style=\"text-align: justify;\"><strong>Auto increment (AI):<\/strong> This will cause the field value to automatically increase on each record. In other words, each time a piece of data is inserted, the system will assign an automatic value to any column to which this characteristic is assigned.<\/li>\n<li style=\"text-align: justify;\"><strong>Unique (U):<\/strong> this characteristic will limit the values that can be stored in a column, since they cannot be repeated in the whole table. That is, a single column will not be able to store records with repeating values.<\/li>\n<li style=\"text-align: justify;\"><strong>Not Null (NN):<\/strong> selecting Not Null forces a value to be inserted in each record. If this option is not used, one could insert empty (null) records.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">I have set the 3 columns that I will handle to be Not Null, as I don&#8217;t want any of the 3 values that are needed in each record to be empty.<\/p>\n<p style=\"text-align: justify;\">Another characteristic that must be established in the columns is the <strong>data type<\/strong>. These can be INTEGER, TEXT, BLOB, REAL, NUMERIC. I proceed to explain this type of data:<\/p>\n<ul style=\"text-align: justify;\">\n<li><strong>INTEGER:<\/strong> whole numbers. They do not accept numbers with a decimal point.<\/li>\n<li><strong>TEXT:<\/strong> alphanumeric data, including letters, numbers and special characters.<\/li>\n<li><strong>BLOB:<\/strong> unspecified data type.<\/li>\n<li><strong>REAL:<\/strong> numeric data, including numbers with a decimal point.<\/li>\n<li><strong>NUMERIC:<\/strong> can be used to store Boolean data and dates (date type data).<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">In my case (see image) I set <strong>id<\/strong> as integer, <strong>temp<\/strong> as real (temperature stored as decimal), <strong>time<\/strong> as text (date stored as text). Maybe it could save time and time (<strong>time<\/strong>) as numeric, but I prefer to do it as text.<\/p>\n<p style=\"text-align: justify;\">The program also generates a &#8220;query&#8221; which is basically code that allows you to build the database.<\/p>\n<pre class=\"lang:default decode:true \">CREATE TABLE \"Temperatura\" (\r\n\t\"id\"\tINTEGER NOT NULL UNIQUE,\r\n\t\"temp\"\tNUMERIC NOT NULL,\r\n\t\"time\"\tTEXT NOT NULL,\r\n\tPRIMARY KEY(\"id\" AUTOINCREMENT)\r\n);<\/pre>\n<p style=\"text-align: justify;\">If this code is executed in a console of an operating system that has SQLite installed, you will be able to create the same table that I have created with DB Browser. The difference is that here I do it visually and when using the query it is done by code.<\/p>\n<p style=\"text-align: justify;\">Once the table is created we can insert data to do a test. Hundreds of thousands of data can be stored in these tables in an orderly manner, without taking up much space.<\/p>\n<p style=\"text-align: justify;\"><a href=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-12630\" src=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3.png\" alt=\"\" width=\"1112\" height=\"462\" srcset=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3.png 1112w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3-300x125.png 300w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3-1024x425.png 1024w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3-768x319.png 768w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3-696x289.png 696w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3-1068x444.png 1068w, https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/db_browser_sqlite-3-1011x420.png 1011w\" sizes=\"auto, (max-width: 1112px) 100vw, 1112px\" \/><\/a><\/p>\n<p style=\"text-align: justify;\">When inserting the data, click on the &#8220;Write Changes&#8221; button so that they are stored in the file.<\/p>\n<p style=\"text-align: justify;\">There can be many tables in the same database. The good thing about these databases is that they allow you to store information through queries, that is, programmatically. But that&#8217;s material from another post.\u00a0For now, I hope you liked this contribution. For any questions, please let me know through the comment box.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>SQLite databases are a type of lightweight database that allows you to store, manage, and retrieve information using a command language with a syntax very similar to MySQL.\u00a0The main advantage of SQLite is that few resources are required to use it. The database consists of a file with a .db extension, in which all the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":12893,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[2068,2069,1984,2067],"tags":[2070,2071,2072,2073],"class_list":{"0":"post-12891","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-mysql-en","8":"category-openwrt-en","9":"category-programming","10":"category-web-design","11":"tag-bases-de-datos-en","12":"tag-bases-de-datos-sqlite-en","13":"tag-crear-bases-de-datos-en-sqlite-en","14":"tag-sqlite-en"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create SQLite databases? - Panama Hitek<\/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:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create SQLite databases? - Panama Hitek\" \/>\n<meta property=\"og:description\" content=\"SQLite databases are a type of lightweight database that allows you to store, manage, and retrieve information using a command language with a syntax very similar to MySQL.\u00a0The main advantage of SQLite is that few resources are required to use it. The database consists of a file with a .db extension, in which all the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/\" \/>\n<meta property=\"og:site_name\" content=\"Panama Hitek\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/antony.garcia.gonzalez\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-21T01:55:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-27T23:48:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"650\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Antony Garc\u00eda Gonz\u00e1lez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/antony_garcia_g\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Antony Garc\u00eda Gonz\u00e1lez\" \/>\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:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/\"},\"author\":{\"name\":\"Antony Garc\u00eda Gonz\u00e1lez\",\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e\"},\"headline\":\"How to create SQLite databases?\",\"datePublished\":\"2021-01-21T01:55:53+00:00\",\"dateModified\":\"2021-03-27T23:48:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/\"},\"wordCount\":808,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg\",\"keywords\":[\"Bases de datos\",\"bases de datos sqlite\",\"crear bases de datos en sqlite\",\"sqlite\"],\"articleSection\":[\"MySQL\",\"OpenWRT\",\"Programming\",\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/\",\"url\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/\",\"name\":\"How to create SQLite databases? - Panama Hitek\",\"isPartOf\":{\"@id\":\"https:\/\/panamahitek.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg\",\"datePublished\":\"2021-01-21T01:55:53+00:00\",\"dateModified\":\"2021-03-27T23:48:11+00:00\",\"author\":{\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e\"},\"breadcrumb\":{\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage\",\"url\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg\",\"contentUrl\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg\",\"width\":1200,\"height\":650},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/panamahitek.com\/en\/home\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create SQLite databases?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/panamahitek.com\/en\/#website\",\"url\":\"https:\/\/panamahitek.com\/en\/\",\"name\":\"Panama Hitek\",\"description\":\"Conocimiento libre, de Panam\u00e1 para el mundo\",\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e\",\"name\":\"Antony Garc\u00eda Gonz\u00e1lez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g\",\"caption\":\"Antony Garc\u00eda Gonz\u00e1lez\"},\"description\":\"Ingeniero Electromec\u00e1nico, egresado de la Universidad Tecnol\u00f3gica de Panam\u00e1. Miembro fundador de Panama Hitek. Entusiasta de la electr\u00f3nica y la programaci\u00f3n.\",\"sameAs\":[\"https:\/\/www.facebook.com\/antony.garcia.gonzalez\",\"https:\/\/www.instagram.com\/antony.garcia.gonzalez\",\"https:\/\/www.linkedin.com\/in\/antony-garcia-gonzalez-96539461\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/antony_garcia_g\"],\"url\":\"https:\/\/panamahitek.com\/en\/author\/agarciag-2\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create SQLite databases? - Panama Hitek","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:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/","og_locale":"en_US","og_type":"article","og_title":"How to create SQLite databases? - Panama Hitek","og_description":"SQLite databases are a type of lightweight database that allows you to store, manage, and retrieve information using a command language with a syntax very similar to MySQL.\u00a0The main advantage of SQLite is that few resources are required to use it. The database consists of a file with a .db extension, in which all the [&hellip;]","og_url":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/","og_site_name":"Panama Hitek","article_author":"https:\/\/www.facebook.com\/antony.garcia.gonzalez","article_published_time":"2021-01-21T01:55:53+00:00","article_modified_time":"2021-03-27T23:48:11+00:00","og_image":[{"width":1200,"height":650,"url":"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg","type":"image\/jpeg"}],"author":"Antony Garc\u00eda Gonz\u00e1lez","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/antony_garcia_g","twitter_misc":{"Written by":"Antony Garc\u00eda Gonz\u00e1lez","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#article","isPartOf":{"@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/"},"author":{"name":"Antony Garc\u00eda Gonz\u00e1lez","@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e"},"headline":"How to create SQLite databases?","datePublished":"2021-01-21T01:55:53+00:00","dateModified":"2021-03-27T23:48:11+00:00","mainEntityOfPage":{"@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/"},"wordCount":808,"commentCount":0,"image":{"@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage"},"thumbnailUrl":"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg","keywords":["Bases de datos","bases de datos sqlite","crear bases de datos en sqlite","sqlite"],"articleSection":["MySQL","OpenWRT","Programming","Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/","url":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/","name":"How to create SQLite databases? - Panama Hitek","isPartOf":{"@id":"https:\/\/panamahitek.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage"},"image":{"@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage"},"thumbnailUrl":"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg","datePublished":"2021-01-21T01:55:53+00:00","dateModified":"2021-03-27T23:48:11+00:00","author":{"@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e"},"breadcrumb":{"@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#primaryimage","url":"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg","contentUrl":"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg","width":1200,"height":650},{"@type":"BreadcrumbList","@id":"https:\/\/panamahitek.com\/en\/how-to-create-sqlite-databases\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/panamahitek.com\/en\/home\/"},{"@type":"ListItem","position":2,"name":"How to create SQLite databases?"}]},{"@type":"WebSite","@id":"https:\/\/panamahitek.com\/en\/#website","url":"https:\/\/panamahitek.com\/en\/","name":"Panama Hitek","description":"Conocimiento libre, de Panam\u00e1 para el mundo","inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e","name":"Antony Garc\u00eda Gonz\u00e1lez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g","caption":"Antony Garc\u00eda Gonz\u00e1lez"},"description":"Ingeniero Electromec\u00e1nico, egresado de la Universidad Tecnol\u00f3gica de Panam\u00e1. Miembro fundador de Panama Hitek. Entusiasta de la electr\u00f3nica y la programaci\u00f3n.","sameAs":["https:\/\/www.facebook.com\/antony.garcia.gonzalez","https:\/\/www.instagram.com\/antony.garcia.gonzalez","https:\/\/www.linkedin.com\/in\/antony-garcia-gonzalez-96539461\/","https:\/\/x.com\/https:\/\/twitter.com\/antony_garcia_g"],"url":"https:\/\/panamahitek.com\/en\/author\/agarciag-2\/"}]}},"jetpack_featured_media_url":"https:\/\/panamahitek.com\/wp-content\/uploads\/2021\/01\/unnamed.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/posts\/12891","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/comments?post=12891"}],"version-history":[{"count":0,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/posts\/12891\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/media\/12893"}],"wp:attachment":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/media?parent=12891"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/categories?post=12891"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/tags?post=12891"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}