Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  1. Create a database in สร้างฐานข้อมูลใหม่ใน SQL Server ; name it ชื่อ jwdb (or another preferred database nameหรือชื่ออื่นที่ต้องการ).
  2. ตรวจสอบให้แน่ใจว่า user ที่ใช้สามารถเข้าถึง Make sure that you grant the intended database user with sufficient access to "jwdb" .ได้
  3. Download ดาวน์โหลด jwdb-mssql.sql and load this SQL file to  และนำเข้า "jwdb". This will populate all necessary  ซึ่งจะเป็นการนำเข้าโครงสร้างตารางฐานข้อมูลที่จำเป็นของ Joget Workflow table structures into ลงใน "jwdb".
  4. In ในโฟลเดอร์ joget-installation-directory/wflow/ , create a new สร้าง datasource profile file ใหม่ app_datasource-mssql.properties.
  5. Open to edit เปิดไฟล์ joget-installation-directory/wflow/app_datasource-mssql.properties in text editor and insert contents as shown in Figure 1 below. You may need to edit the configurations (such as datasource URL, database user/password) according to your environment.บนโปรแกรม text editor หรือโปรแกรมอื่นๆ จากนั้นเพิ่มข้อความตาม รูปที่ 1 ด้านล่าง คุณอาจต้องแก้ไขการกำหนดค่า (เช่น datasource URL, username, password) ตามสภาพแวดล้อมของ SQL Server
  6. เปิดไฟล์ Open to edit joget-installation-directory/wflow/app_datasource.properties in text editor and change the content as shown in Figure 2 below. This is to activate the datasource profile named บนโปรแกรม text editor หรือโปรแกรมอื่นๆ และแก้ไขข้อความตาม รูปที่ 2 ด้านล่าง ขั้นตอนนี้จะเป็นการเปิดใช้งาน datasource profile ที่ชื่อว่า "mssql".
  7. Restartรัน Joget Workflow server.ใหม่อีกครั้ง

...

ขั้นตอนที่ 1: Datasource Profile Configurations

Code Block
langxml
workflowDriver=com.microsoft.sqlserver.jdbc.SQLServerDriver
workflowUrl=jdbc\:sqlserver\://host\:1433;DatabaseName\=jwdb;SelectMethod\=cursor
workflowUser=username
workflowPassword=password

You may need to change the datasource URL, database user and database user's password accordingly.

Step 2: datasource.properties

Code Block
langxml
currentProfile=mssql

Step 3: Enabling TCP/IP on Microsoft SQL Server 2005

In order to connect to the Microsoft SQL Server remotely (such as JDBC datasource), TCP/IP needs to be enabled. This is disabled by default on Microsoft SQL Server 2005 Express edition. TCP/IP may also be manually disabled on other editions of Microsoft SQL Server 2005.

...