我用的是SAS9.2版本
运行以下程序
libname test mysql user=root password=xxx database=test
server="127.0.0.1" port=3306;
ERROR: The SAS/ACCESS Interface to MYSQL cannot be loaded. The libmysql code appendage could not be loaded.
ERROR: Error in the LIBNAME statement.
或者用sql也报错
   proc sql;
     connect to mysql as test
          (user='root' password=XXXXXXXXX server="127.0.0.1"
           database='test' port=3306);
ERROR: The SAS/ACCESS Interface to MYSQL cannot be loaded. The libmysql code appendage could not be loaded.
    quit;
最近刚开始用mysql,不清楚sas和mysql是怎么连接的。
请问:
上面程序怎么改?
安装完mysql和sas后在运行以上程序前还需要做什么设置吗?
语句中的server后应该写什么?
解决方法:
用ODBC方法解决。
遗留问题:
电驴上下载的SAS 9.2不支持MYSQL吗?