1
0
-1

Hello,

I'm trying to follow this tutorial on Joget's Knowledge Base Joget Workflow Open Source , to build the source code on my computer.

I've reached the end of step 4, and I don't understand the last line in step 4 which says 'Create a "jwdb" database in your MySQL Server with the "jwdb-empty.sql" file located in the source code directory "wflow-install/src/main/resources/data/".'

I have found the "jwdb-empty.sql" file, but I don't know what to do with it.

Should I open it using MySQL server, and create a new database called "jwdb" inside it?

Please answer in detail, if possible; as I'm not familiar with databases.

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      first create database using this command


      CREATE SCHEMA jwdb

      after that open the sql file in any database tool (i suppose you are using mysql workbench) and run that sql script. for workbench you use this button.

      but make sure before running this script that the default database is jwdb. you can make it using the following

      1. Sarah

        Thank you so much! it worked.

      CommentAdd your comment...