Remove simple folder

This commit is contained in:
DuongDo-InterSystems 2019-06-04 10:10:23 -04:00
parent 5d89bbc7e1
commit cf1610be29
3 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,6 @@
/*
* PURPOSE: Makes a connection to an instance of InterSystems IRIS Data Platform.
*/
//package com.intersystems.samples;
import com.intersystems.jdbc.IRISDataSource;
@ -15,7 +14,7 @@ public class HelloWorld {
int port = 51773;
String namespace = "USER";
String username = "SuperUser";
String password = "SYS";
String password = "sys";
try {
// Using IRISDataSource to connect
IRISDataSource ds = new IRISDataSource();

View File

@ -3,7 +3,7 @@ This is a simple hello world example to show a JDBC connection to InterSystems I
## Run the sample
In the integrated terminal window type:
* `cd /home/project/Samples-java-helloworld/simple`
* `cd /home/project/Samples-java-helloworld`
* `javac -cp ".:intersystems-jdbc-3.0.0.jar" HelloWorld.java`
* `java -cp ".:intersystems-jdbc-3.0.0.jar" HelloWorld`