Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

MySQL with node.js

I've just started getting into node.js, and come from a PHP background. As such, i'm fairly used to using MySQL for all my database needs. What are the options for using MySQL with node.js? I've ...
4
votes
3answers
3k views

Databases using JSON as storage/transport format

How many database systems there are that use JSON for storage or transport? I know of: CouchDB MongoDB DBSlayer I remember I saw yet another vendor in a SO user's profile. That systems was using ...
1
vote
1answer
984 views

JSON, HighCharts/HighStock, DBSlayer - Data display

I have a MySQL database with some price data in it I would like to display using HighCharts/HighStock yet I'm not sure how I can actually go about getting this data from MySQL (via DBslayer as the ...
1
vote
1answer
31 views

Problem with truncation of floating point values in DBSlayer

When I run a query through DBslayer http://code.nytimes.com/projects/dbslayer the floating point results are truncated to a total of six digits (plus decimal point and negative sign when needed). ...
1
vote
2answers
352 views

DBSlayer - what does it actually do?

I recently stumbled across DBslayer (http://code.nytimes.com/projects/dbslayer/wiki/WhyUseIt) and wondered what is the actual benefit of using it as an interface to mysql. As far as I understand, it ...
0
votes
2answers
484 views

MySQL 1064 error, works in command line and phpMyAdmin; not in app

Here is my query: select * from (select *, 3956 * 2 * ASIN(SQRT(POWER(SIN(RADIANS(45.5200077 - lat)/ 2), 2) + COS(RADIANS(45.5200077)) * COS(RADIANS(lat)) * POWER(SIN(RADIANS(-122.6942014 - ...