caminte icon indicating copy to clipboard operation
caminte copied to clipboard

Cross-db ORM for NodeJS

Results 100 caminte issues
Sort by recently updated
recently updated
newest added

Hi, I would like to know if there is any parameters that I have to add on the caminte constructor to auto create SQL Tables if they are not created?...

Is [this](http://www.camintejs.com/en/creator) open source somewhere?

Thanks for the excellent package. I have had some trouble getting the promise-implementation to work, though. Here's what I'found: Basically the promise style functions work, so long as the database...

For the model given below the index for "testcolumn" is not created when using the current master. This is due to a resulting conflict in l 249 mysql, because the...

When use findById() and pass a uuid alphanumeric string, example: ``` User.findById(6f13eba03b6d11e780d5c59d28f4b039, function(err, user){ // your code here }) ``` show: `Unhandled rejection Error: SQLITE_ERROR: no such column: "6f13eba03b6d11e780d5c59d28f4b039"` this...

``` Visit .find( { where: { status: {nlike: 'finished'}, slug: params.slug }, order: 'createdAt DESC' }, function (error, visits) { if (error) reject(error); else { console.log(visits[0].status == 'finished'); //true resolve(visits);...

I noticed difference in result when I'm using `in` in queries: ``` models .Event .find( { where: {socketId: {in: [1198]}} }, function (error, events) { // events = [] }...

The code in Redis driver is deprecated. If there's no auth information for Redis server provided in config, the following warnings are shown in console: node_redis: Deprecated: The AUTH command...

We are using Cloudant DB with Caminte, and everytime we try to access DB, same error pops up : > server_admin access is required for this request It's not able...