Is there any way to use both SQL and NO-SQL databases together in Django? [duplicate]
This question already has an answer here:
Multiple databases (mongodb[mongoengine] and sql ) with django 1.8
2 answers
multiple databases and multiple models in django
2 answers
I already have SQLite DB integrated with my web app (using Django web framework) but now I want to add MongoDB for NO-SQL component. Is there any way to use both SQL and NO-SQL together?
django mongodb
marked as duplicate by Neil Lunn
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Nov 12 at 8:25
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Multiple databases (mongodb[mongoengine] and sql ) with django 1.8
2 answers
multiple databases and multiple models in django
2 answers
I already have SQLite DB integrated with my web app (using Django web framework) but now I want to add MongoDB for NO-SQL component. Is there any way to use both SQL and NO-SQL together?
django mongodb
marked as duplicate by Neil Lunn
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Nov 12 at 8:25
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Multiple databases (mongodb[mongoengine] and sql ) with django 1.8
2 answers
multiple databases and multiple models in django
2 answers
I already have SQLite DB integrated with my web app (using Django web framework) but now I want to add MongoDB for NO-SQL component. Is there any way to use both SQL and NO-SQL together?
django mongodb
This question already has an answer here:
Multiple databases (mongodb[mongoengine] and sql ) with django 1.8
2 answers
multiple databases and multiple models in django
2 answers
I already have SQLite DB integrated with my web app (using Django web framework) but now I want to add MongoDB for NO-SQL component. Is there any way to use both SQL and NO-SQL together?
This question already has an answer here:
Multiple databases (mongodb[mongoengine] and sql ) with django 1.8
2 answers
multiple databases and multiple models in django
2 answers
django mongodb
django mongodb
asked Nov 11 at 7:57
Keshav Bharat
1
1
marked as duplicate by Neil Lunn
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Nov 12 at 8:25
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Neil Lunn
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Nov 12 at 8:25
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Django Models only work with relational databases. There is a GitHub project that was meant to be a MongoDB replacement for Django Model backend, but it is no longer maintained. But there is nothing stopping you from putting python code that carries out CRUD operations with a NO-SQL database server in your Django project. It's just that things like makemigrations
and migrate
will not work with your NO-SQL DB.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Django Models only work with relational databases. There is a GitHub project that was meant to be a MongoDB replacement for Django Model backend, but it is no longer maintained. But there is nothing stopping you from putting python code that carries out CRUD operations with a NO-SQL database server in your Django project. It's just that things like makemigrations
and migrate
will not work with your NO-SQL DB.
add a comment |
Django Models only work with relational databases. There is a GitHub project that was meant to be a MongoDB replacement for Django Model backend, but it is no longer maintained. But there is nothing stopping you from putting python code that carries out CRUD operations with a NO-SQL database server in your Django project. It's just that things like makemigrations
and migrate
will not work with your NO-SQL DB.
add a comment |
Django Models only work with relational databases. There is a GitHub project that was meant to be a MongoDB replacement for Django Model backend, but it is no longer maintained. But there is nothing stopping you from putting python code that carries out CRUD operations with a NO-SQL database server in your Django project. It's just that things like makemigrations
and migrate
will not work with your NO-SQL DB.
Django Models only work with relational databases. There is a GitHub project that was meant to be a MongoDB replacement for Django Model backend, but it is no longer maintained. But there is nothing stopping you from putting python code that carries out CRUD operations with a NO-SQL database server in your Django project. It's just that things like makemigrations
and migrate
will not work with your NO-SQL DB.
answered Nov 11 at 8:07
Red Cricket
4,24483382
4,24483382
add a comment |
add a comment |