demo package files added

This commit is contained in:
yabwon
2019-10-13 16:12:18 +02:00
parent b2a60a9ed0
commit 77eef7917e
8 changed files with 320 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
%include "C:\SAS_PACKAGES\generatePackage.sas";
ods html;
%generatePackge(filesLocation=C:\SAS_PACKAGES\SQLinDS)
/*
* filename reference "packages" and "package" are keywords;
* the first one should be used to point folder with packages;
* the second is used internaly by macros;
filename packages "C:\SAS_PACKAGES";
%include packages(loadpackage.sas);
dm 'log;clear';
%loadpackage(SQLinDS)
%helpPackage(SQLinDS)
%helpPackage(SQLinDS,*)
%unloadPackage(SQLinDS)
*/