Skip to Content
Technical Articles
Author's profile photo Silas rocha

Create SAP Fiori App with Mysql in SAP Cloud Foundry using (SAP Open connector + SAP API Management) PART I

1.2 Firewall configurations

1.3 Creating Database and table

https://docs.microsoft.com/en-us/azure/mysql/tutorial-design-database-using-portal#connect-to-the-server-using-mysql

CREATE TABLE t_category (
  Id_Category VARCHAR(50) PRIMARY KEY, 
  Category_Name VARCHAR(50), 
  Begin_Date VARCHAR(50), 
  Control VARCHAR(50), 
  End_Date VARCHAR(50) 
);

INSERT INTO t_category (Id_Category, Category_Name, Begin_Date,Control,End_Date) 
VALUES ('CAT0001', 'Senior manager', '21.02.2020', 'High','30.12.2999');
INSERT INTO t_category (Id_Category, Category_Name, Begin_Date,Control,End_Date) 
VALUES ('CAT0002', 'Internal ', '21.02.2020', 'Low','30.12.2999');
INSERT INTO t_category (Id_Category, Category_Name, Begin_Date,Control,End_Date) 
VALUES ('CAT0003', 'Conflict of intetest', '21.02.2020', 'Medium','30.12.2999');

Now we have our Mysql Database created and avaliable to be externally accessed.

Assigned Tags

      Be the first to leave a comment
      You must be Logged on to comment or reply to a post.