[Google Maps API v3] Re: From Info Windows to a Database

2011-08-06 Thread Bob Torzynski
Hi Dinesh, If you could post a link to what you're working on it would help. This page: http://gis.zgroks.com/rw2.html does what you're talking about. (I noticed you posted a test to it, btw). The saveData() function in this working example is different from the Tutorials, and using encodeURICompo

[Google Maps API v3] Re: From Info Windows to a Database

2011-08-05 Thread Rossko
> i am in dire need of help. Start here http://groups.google.com/group/google-maps-js-api-v3/t/2b3f101fd509919e -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api-v3@googlegr

Re: [Google Maps API v3] Re: "From Info Windows to a Database" SQL syntax error

2010-12-27 Thread David Ruggles
Not to take this too far off topic, but it would have worked if you had escaped the word "long" using back-ticks (`) but changing the name to something that isn't reserved is much better. On Sun, Dec 26, 2010 at 7:55 PM, Sheridan wrote: > I changed everything in all four pages to 'lon' instead o

[Google Maps API v3] Re: "From Info Windows to a Database" SQL syntax error

2010-12-26 Thread Sheridan
I changed everything in all four pages to 'lon' instead of 'long' and it works fine. Cheers Andrew. Weird that it could read from a database but not write to it. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this

[Google Maps API v3] Re: "From Info Windows to a Database" SQL syntax error

2010-12-26 Thread Sheridan
> (b) "long" is a reserved word in many contexts, including Javascript and > MySQL. Damn. I was afraid of that. What's weird is that "long" works in the other page. > Don't use "long" at all. Make everything "lng": var lng in Javascript; > $lng in php; database column lng. Or, use lon instead

[Google Maps API v3] Re: From Info Windows to a Database...

2010-08-24 Thread geocode...@gmail.com
On Aug 24, 8:20 am, Mike Armstrong wrote: > Hello, try to accomplish similar, if not the same functionality as the > following article > :http://code.google.com/apis/maps/articles/phpsqlinfo_v3.html > > The only difference is, I'm trying to do this with .NET and SQL, > instead of PHP and MySQL ..