我想用R连接到Oracle。我使用RODBC包进行此连接。以下是我的连接代码
var param = {
key: "My_Key",
location: pos.lat+','+pos.lng,
radius: 3000,
type: "church"
};
$.ajax({
url: "https://maps.googleapis.com/maps/api/place/nearbysearch/json?" + jQuery.param(param),
method: "GET",
async: false,
success: function(resp) {
console.log(resp);
},
error: function(error) {
console.log(error);
}
});
但是我收到以下错误
1: [RODBC]错误:状态IM002,代码0,消息[Microsoft] [ODBC驱动程序管理器]未找到数据源名称且未指定默认驱动程序
2: ODBC连接失败
这很奇怪,因为我使用直接连接,它不需要TSN和DSN。此外,我还使用Oracle SQL Developer成功连接到具有相同主机名,端口,SID,用户名和密码的Oracle。