Blog

Articles about IoT, PCB Design, Simulation and Development

12 results for Bases de datos

Introduction to Security
44 min read ES CA EN

Introduction to Security

What is computer security? A set of techniques and policies that seek to minimize the vulnerability of systems or the information they contain. It is about making the cost of improperly accessing a…

Read more →
2 min read ES CA EN

XML (Extensible Markup Language) in Java

XML stands for "Extensible Markup Language". It has several advantages over other ways of storing information: It is extensible: After being designed and put into production, it is possible to extend…

Read more →
24 min read ES CA EN

DAM_07

Interface development 2015-09-22 Presentation + Hello in QT Presentation pr00.tar.gz --> Hello in QT 2015-09-23 Sending text with QtDebug pr01b.tar.gz --> Closes the QT window and explanation of the…

Read more →
1 min read ES CA EN

Notes

Markup language: Basic HTML concepts. Databases: Views (cat) User management (cat) Procedures and functions Variables and Handlers (cat) Cursors Control flow constructs Triggers Career Training and…

Read more →
Serial I2C 1602 16×2 Character LCD Module
3 min read ES CA EN

Serial I2C 1602 16×2 Character LCD Module

This is another great blue/yellow backlight LCD display. As the pin resources of Arduino controller is limited, your project may be not able to use normal LCD shield after connected with a certain…

Read more →
4 min read ES CA EN

Control flow constructs

IF, LOOP, ITERATE, LEAVE, REPEAT/UNTIL and WHILE/DO. The IF statement: What is it? It is a statement; IF also exists as a function, and we should not confuse them. Syntax IF searchcondition THEN…

Read more →
2 min read ES CA EN

Cursors

What is a cursor? A cursor allows real-time access to the data of each row in a query. This mechanism is very useful when connecting MySQL with applications or performing complex queries. Declaration…

Read more →
3 min read ES CA EN

Triggers (triggers)

CONCEPTES BÀSICS A trigger is an object associated with a table that is activated when an action occurs against that table. Usage example A trigger is set to fire when we insert a new grade outside…

Read more →
19 min read ES CA EN

User management

MySQL stores user information in the tables of the mysql database (DB). The CREATE USER command creates new MySQL users. To use it, you must have the global CREATE USER privilege or the INSERT…

Read more →
7 min read ES CA EN

Stored procedures and functions

Definition: A stored procedure is a set of SQL commands that can be stored on the server. A stored procedure is a program that is physically saved in a database. Its implementation varies from one…

Read more →
2 min read ES CA EN

Variables and Handlers

VARIABLES Variables are used to store information locally. They can be used to store constants or query results. They are deleted when MySQL is restarted. The definition is divided into three parts…

Read more →
8 min read ES CA EN

VIEWS

With views, we will work with external schemas. To create a view, you need to use the CREATE VIEW statement STRUCTURECREATE VIEW viewname [(columnlist)] AS (query) [WITH CHECK OPTION]; Views do not…

Read more →