Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
usingdatabasebeansforallproducts [2021/07/28 13:14] wikiadmin [Database Devices in TransSECS and MIStudio Devices Node] |
usingdatabasebeansforallproducts [2022/01/02 22:09] (current) wikiadmin [Introduction] |
||
---|---|---|---|
Line 7: | Line 7: | ||
For all examples, a Database Connection Manager (DatabaseConnectionManager) is used to connect to the database itself. Some DatabaseConnectionManagers are set up for specific databases (MySQL/ | For all examples, a Database Connection Manager (DatabaseConnectionManager) is used to connect to the database itself. Some DatabaseConnectionManagers are set up for specific databases (MySQL/ | ||
- | To read data from the database or to write data to the database, there are a variety of database server " | + | To use any of the database servers, a JDBC Driver jar specific to the database must be added to the project. For MIStudio, use the Drivers node of the project, right click and browse for this jar on your computer system. When you deploy to MIX from MIStudio, this jar will be added to the MIX deployment. For TransSECS this jar must be added to a resources directory of your project. When you build your TransSECS project this jar will be added to the deployment. |
+ | |||
+ | To read data from the database or to write data to the database, there are a variety of database server " | ||
==== Using the Database Servers in MIStudio==== | ==== Using the Database Servers in MIStudio==== | ||
Line 22: | Line 24: | ||
Database Connection Managers can be added to and configured in the Devices Node of TransSECS and MIStudio. | Database Connection Managers can be added to and configured in the Devices Node of TransSECS and MIStudio. | ||
==== Using the Database Servers in Scripts (MIStudio and TransSECS)==== | ==== Using the Database Servers in Scripts (MIStudio and TransSECS)==== | ||
+ | |||
+ | [[UsingDatabaseServerBeansInScripting|Using the Database Servers in Scripts for MIStudio and TransSECS]] | ||
+ | |||
+ | Using scripts in your project can provide you with a lot of flexibility in your back-end logic. | ||