パラメータ化されたステートメント
次のコード例は、パラメータをバインドしてパラメータ化されたステートメントを作成する方法を示します。
シングルユース ステートメント
RODBCext のsqlExecute 関数は、クエリパラメータを値にバインドするための追加のデータフレームを受け入れます。
sqlExecute( cnx, query = "SELECT PartitionKey, Name FROM NorthwindProducts WHERE Industry = ?", data = data.frame("Floppy Disks") ) results <- sqlGetResults(cnx, max = 1000) while (is.data.frame(results)) { for (row in 1:nrow(results)) { cat(paste("PartitionKey = ", results[row,]$PartitionKey, "\n")) cat(paste("Name = ", results[row,]$Name, "\n")) } results <- sqlGetResults(cnx, max = 1000) }