Displaying 2 results from an estimated 2 matches for "updatedata".
Did you mean:
update_data
2007 Jun 05
2
Problems with Merge
...0 rows, and roughly similar number of columns as the history ds (but
not necessarily equal). The update dataset is read from an Excel ODBC
connection. When I try and merge these datasets, I get counter-intuitive
results.
library(RODBC)
chn <- odbcConnectExcel(UpdateFile)
sqlTables(chn)
UpdateData <- sqlFetch(chn,"MCap243")
colnames(UpdateData) <- gsub("#",".",colnames(UpdateData))
close(chn)
# specify just how many rows we need from the Update file. We'd only
read five
# rows at a time.
UpdateRows = 20
UpdateData <- UpdateData[1:U...
2008 Jan 30
3
Ajax.Request - nothing in responseText, I need it!!
...cript
that sends a query to my db and then echos the return data into html
format. this script works fine when I go to the url in a browser and
send the correct params.
However, in my ajax request, nothing gets returned?! Here is my
code...
------------------------------------------------
function updateData()
{
url = "http://www.myURL.com/updateData.php?myparams";
new Ajax.Request(url, {
method: ''POST'',
asynchronus: ''true'',
contentType: ''text/html'',
onComplete: parseData});
}
function parseData(ori...