How to install FlameRobin on Windows 10
How to install FlameRobin on Windows 10
Step 1: Download the installer file.
Check out the FlameRobin download link: https://cdn.mysql.com//Downloads/MySQLGUITools/mysql-workbench-community-8.0.18-winx64.msi
Step 2: Install FlameRobin.
Step 3: Start Firebird ISQL Tool.
We can test whether the FlameRobin is working.
SQL>create database 'd:\Firebird\test.fdb'↵
CON>user 'SYSDBA' password 'masterkey';↵
SQL>create table employees(employee_id varchar(5), firstname varchar(12), lastname varchar(15));
SQL>show table;
SQL>insert into employees(employee_id,firstname,lastname) values ('E0001','Steve','Patterson');
SQL>select * from employees;
How to know the Firebird ISQL Tool, you can check out this video [https://youtu.be/o7zG5v3rQEo]
Step 4: Working with FlameRobin.
Step 1: Download the installer file.
Check out the FlameRobin download link: https://cdn.mysql.com//Downloads/MySQLGUITools/mysql-workbench-community-8.0.18-winx64.msi
Step 2: Install FlameRobin.
Step 3: Start Firebird ISQL Tool.
We can test whether the FlameRobin is working.
SQL>create database 'd:\Firebird\test.fdb'↵
CON>user 'SYSDBA' password 'masterkey';↵
SQL>create table employees(employee_id varchar(5), firstname varchar(12), lastname varchar(15));
SQL>show table;
SQL>insert into employees(employee_id,firstname,lastname) values ('E0001','Steve','Patterson');
SQL>select * from employees;
How to know the Firebird ISQL Tool, you can check out this video [https://youtu.be/o7zG5v3rQEo]
Step 4: Working with FlameRobin.
Comments
Post a Comment