SQL: Difference between revisions

From SweepMe! Wiki
Jump to navigation Jump to search
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
Structured Query Language (SQL) is a database language that is used in relational database management system such MySQL, SQL Server, PostgreSQL, or SQLite. Further information can be found here: https://en.wikipedia.org/wiki/SQL
Structured Query Language (SQL) is a database language that is used in relational database management system such MySQL, SQL Server, PostgreSQL, or SQLite. Further information can be found here: https://en.wikipedia.org/wiki/SQL


== Supported engines ==
= Engines =


=== MySQL ===
Engines or database systems are provided by different companies and projects. The supported ones are listed below. Contact us if you need access to a database that is not yet implemented.
 
== MySQL ==
* Link: https://www.mysql.com/
* Link: https://www.mysql.com/
* Creator/maintainer: Oracle
* released by: Oracle


=== MariaDB ===
== MariaDB ==
* Link: https://mariadb.com/
* Link: https://mariadb.com/
* Creator/maintainer: MariaDB Corporation Ab
* released by: MariaDB Corporation Ab


=== SQL Server ===
== SQL Server ==
* Link: https://www.microsoft.com/sql-server
* Link: https://www.microsoft.com/sql-server
* Creator/maintainer: Microsoft
* released by: Microsoft
* Comment: supports options 'driver' and 'schema'
 
=== Usage ===
* Options 'driver' and 'schema' are supported
 
== PostgreSQL ==
* Link: https://www.postgresql.org/
* released by: The PostgreSQL Global Development Group
 
== SQLite ==
* Link: https://www.sqlite.org/index.html
* released by: Hipp, Wyrick & Company, Inc., (Hwaci)
 
=== Usage ===
* SQLite databases can be created with tools such as https://sqlitebrowser.org/.
* To access your database, enter the path in the database field, e.g "C:\test.db".
* Do not alter properties of your database file. Otherwise your measurement might be aborted.
* Options 'user', 'password', 'server', 'driver', and 'schema' are not supported.


== Modes ==
= Modes =


There are basically two modes supported: You can add data to an existing database into or you can fetch data from an database.
There are basically two modes supported: You can add data into an existing database or you can fetch data from a database.


=== Insert/add data to a database ===
== Insert/add data to a database ==


* Database and Table must already exist.
* Database and Table must already exist.
* Values for all columns of an existing table must be submitted.
* Values for all columns of an existing table must be submitted.


=== Select and fetch data from a database ===
== Select and fetch data from a database ==


*
* in planning, not yet available





Latest revision as of 14:09, 2 October 2022

Structured Query Language (SQL) is a database language that is used in relational database management system such MySQL, SQL Server, PostgreSQL, or SQLite. Further information can be found here: https://en.wikipedia.org/wiki/SQL

Engines

Engines or database systems are provided by different companies and projects. The supported ones are listed below. Contact us if you need access to a database that is not yet implemented.

MySQL

MariaDB

SQL Server

Usage

  • Options 'driver' and 'schema' are supported

PostgreSQL

SQLite

Usage

  • SQLite databases can be created with tools such as https://sqlitebrowser.org/.
  • To access your database, enter the path in the database field, e.g "C:\test.db".
  • Do not alter properties of your database file. Otherwise your measurement might be aborted.
  • Options 'user', 'password', 'server', 'driver', and 'schema' are not supported.

Modes

There are basically two modes supported: You can add data into an existing database or you can fetch data from a database.

Insert/add data to a database

  • Database and Table must already exist.
  • Values for all columns of an existing table must be submitted.

Select and fetch data from a database

  • in planning, not yet available