A Data Source lists the DBMS database used or location of the data files.You need at least one Data Source to use JDD.

The examples here assume that you are using MySQL. You do not need to have installed MySQL at the client computer, but the client library is required.

Verb ddsrc returns the list of data sources given in the RDBMS. The result has 2 columns: the data source name, and a description of the driver:

   load 'data/ddmysql'
   db=: ''conew'jddmysql'
   ddcon__db'uid=root;pwd=***'
   ddsrc__db ch
+------------------+-----+
|information_schema|MySQL|
+------------------+-----+
|jdata             |MySQL|
+------------------+-----+
|mysql             |MySQL|
+------------------+-----+

The result will depend on the drivers you have set up. You should see an entry for jdata, which is the data source name you assigned to the jdata database.

Unlike J/ODBC,

JDD/Data Sources (last edited 2011-05-07 07:39:26 by BillLam)