-
Consider this scenario:
``` python
from mosql.query import *
def select_normal():
print select('question', where={'answer': 42})
def select_mysql():
from mosql import mysql
print select…
-
``` python
>>> from mosql import query
>>> help(query.insert)
Help on Query in module mosql.util object:
class Query(__builtin__.object)
| It makes a partial :class:`Statement`.
|
| :param st…
-
As mentioned in #8, it looks like another case is not being handled in updates.
Stack here:
```
DEBUG MoSQL: processing op: {"ts"=>seconds: 1360870248, increment: 2, "h"=>-5242060077508462325, "v"=>…
-
There doesn't seem to be a way to perform [multi-row INSERT](http://tinyurl.com/2urwkq)s. The following is invalid:
``` python
insert(
'person',
columns=('first_name', 'last_name'),
value…
-
I think it's just because I haven't understood how to use it yet, but I didn't manage to get the sync working.
Basically what I do is this:
$ mosql -c collections.yaml --mongo mongodb://user:passwo…
-
-
See https://github.com/stripe/mosql/issues/9#issuecomment-51666800
@christinang89 -- looks like the problem is that your data has a `BSON::ObjectRef`, which we haven't implemented support for. I'm no…
-
1. Why if I run the command in this way
mosql -c comments.yaml --mongo mongodb://django:django@localhost:27017/ --sql postgres://django:django@localhost/garage -v -v -v --no-drop-tables
…
-
If a collection has a name like ss.country we get the "No mapping for namespace" exception. Is this a bug or there is a way to work with such collection names?
Example stack trace is as follows.
My …
-
Using [browserify](https://github.com/substack/node-browserify) will help to reduce the boilerplate on source files. Combined with [gulp](http://gulpjs.com/), both the build & testing can be automated…