我想使用 Script 通过 Script 在 Google docs 中建立与 MS SQL 的连接integrated security = SSIP
,基本上是使用我的集成 Windows 身份验证连接到服务器。但是,Google 告诉我“集成安全”连接属性不受支持。我尝试了不同的措辞(trusted_security 等),但没有任何效果。
有谁知道解决方法?
我使用了谷歌下面提供的查询。
// Replace the variables in this block with real values.
var address = 'database_IP_address';
var user = 'user_name';
var userPwd = 'user_password';
var db = 'database_name';
var dbUrl = 'jdbc:mysql://' + address + '/' + db' integrated security = ssip;
// Read up to 1000 rows of data from the table and log them.
function readFromTable() {
var conn = Jdbc.getConnection(dbUrl, user, userPwd);
var start = new Date();
var stmt = conn.createStatement();
stmt.setMaxRows(1000);
var results = stmt.executeQuery('SELECT * FROM entries');
var numCols = results.getMetaData().getColumnCount();
while (results.next()) {
var rowString = '';
for (var col = 0; col < numCols; col++) {
rowString += results.getString(col + 1) + '\t';
}
Logger.log(rowString)
}
results.close();
stmt.close();
var end = new Date();
Logger.log('Time elapsed: %sms', end - start);
}