Is there any way to use both SQL and NO-SQL databases together in Django? [duplicate]










0















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?










share|improve this question













marked as duplicate by Neil Lunn mongodb
Users with the  mongodb badge can single-handedly close mongodb questions as duplicates and reopen them as needed.

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.



















    0















    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?










    share|improve this question













    marked as duplicate by Neil Lunn mongodb
    Users with the  mongodb badge can single-handedly close mongodb questions as duplicates and reopen them as needed.

    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.

















      0












      0








      0








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 11 at 7:57









      Keshav Bharat

      1




      1




      marked as duplicate by Neil Lunn mongodb
      Users with the  mongodb badge can single-handedly close mongodb questions as duplicates and reopen them as needed.

      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 mongodb
      Users with the  mongodb badge can single-handedly close mongodb questions as duplicates and reopen them as needed.

      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.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer



























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            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.






            share|improve this answer

























              0














              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.






              share|improve this answer























                0












                0








                0






                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.






                share|improve this answer












                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 11 at 8:07









                Red Cricket

                4,24483382




                4,24483382













                    Popular posts from this blog

                    How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

                    Syphilis

                    Darth Vader #20