SQLize
Online
/
PHPize Online
/
SQLtest Online
A
A
A
Share
Donate
Blog
Popular
Donate
A
A
A
Share
Blog
Popular
SQLize.online is a free online SQL environment for quickly running, experimenting with and sharing code.
You can run your SQL code on top of the most popular RDBMS including MySQL, MariaDB, SQLite, PostgreSQL, Oracle and Microsoft SQL Server.
SQL code:
Upload
Copy
Format
Clear
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using FirebirdSql.Data.FirebirdClient; namespace TestProg { public partial class Form1 : Form { FbConnection fbCon; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void btnConnect_Click(object sender, EventArgs e) { //создаем connection для соединения базой FbConnectionStringBuilder fb_cons = new FbConnectionStringBuilder(); fb_cons.Charset = "WIN1251"; //кодировка fb_cons.UserID = "SYSDBA"; fb_cons.Password = "masterkey"; fb_cons.Database = @"C:\rab\fb\TESTF.FDB"; fb_cons.ServerType = 0; //указываем тип сервера (0 - "полноценный Firebird" (classic или super server), 1 - встроенный (embedded)) //создаем подключение fbCon = new FbConnection(fb_cons.ToString()); //передаем нашу строку подключения объекту класса FbConnection fbCon.Open(); //открываем БД FbDatabaseInfo fb_inf = new FbDatabaseInfo(fbCon); //информация о БД MessageBox.Show("Info: " + fb_inf.ServerClass + "; " + fb_inf.ServerVersion); //выводим тип и версию используемого сервера Firebird } } }
SQL
Server:
MariaDB 11.4
MariaDB 11.5
MariaDB 10
MariaDB 10 Sakila (ReadOnly)
MySQL 8.0
MySQL 8.0 Sakila (ReadOnly)
SQLite 3
SQLite 3 Preloaded
PostgreSQL 10 Bookings (ReadOnly)
PostgreSQL 13
PostgreSQL 14
PostgreSQL 15
PostgreSQL 16
PostgreSQL 17
MS SQL Server 2017
MS SQL Server 2019
MS SQL Server 2022
MS SQL Server 2022 AdventureWorks (ReadOnly)
Firebird 4.0
Firebird 4.0 (Employee)
Oracle Database 19c (HR)
Oracle Database 21c
Oracle Database 23c Free
SOQOL
Version
ER Diagram
Preserve result
Stuck with a problem?
Got Error?
Ask ChatGPT!
Result:
Copy
Clear