version 2.1

recompiled with new framework setup
This commit is contained in:
yabwon
2020-07-30 14:45:19 +02:00
parent f4493aef1c
commit 6841f6bd08
11 changed files with 402 additions and 0 deletions

View File

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