Is There A Way To Access A Separate Local Database From Wordpress?Can I install/update WordPress plugins without providing FTP access?Calling $wpdb in a function in non-WordPress fileError: Object of class stdClass could not be converted to string — implode() — phpAccessing wpdb (wordpress database) from laravel controllercan't select database wordpress errorSetting an external database for WordPress from wp_config file$wpdb->prepare() returns NULL or empty on seemingly correct SQL statementError establishing a database connection during wordpress installationwordpress database connection on local serverWordpress different database Error establishing a database connection

What happens to unproductive professors?

Can a landlord force all residents to use the landlord's in-house debit card accounts?

Non-Chromatic Orchestral Instruments?

US citizen traveling with Peruvian passport

How do I explain that I don't want to maintain old projects?

Can the word "desk" be used as a verb?

Writing an ace/aro character?

Why did Old English lose both thorn and eth?

No Torah = Revert to Nothingness?

Why is the Cauchy Distribution is so useful?

How to convert diagonal matrix to rectangular matrix

When did "&" stop being taught alongside the alphabet?

Intern not wearing safety equipment; how could I have handled this differently?

Is this Cambridge Dictionary example of "felicitate" valid?

Estimates on number of topologies on a finite set

Is there a strong legal guarantee that the U.S. can give to another country that it won't attack them?

Can Jimmy hang on his rope?

Generalized Behrend version for Grothendieck-Lefschetz trace formula

What's it called when the bad guy gets eaten?

My previous employer committed a severe violation of the law and is also being sued by me. How do I explain the situation to future employers?

What would +1/+2/+3 items be called in game?

Did right-wing politician Franz Josef Strauss ever explain why he gave a 3 billion loan to East Germany in 1983?

How should I ask for a "pint" in countries that use metric?

Why does the Antonov AN-225 not have any winglets?



Is There A Way To Access A Separate Local Database From Wordpress?


Can I install/update WordPress plugins without providing FTP access?Calling $wpdb in a function in non-WordPress fileError: Object of class stdClass could not be converted to string — implode() — phpAccessing wpdb (wordpress database) from laravel controllercan't select database wordpress errorSetting an external database for WordPress from wp_config file$wpdb->prepare() returns NULL or empty on seemingly correct SQL statementError establishing a database connection during wordpress installationwordpress database connection on local serverWordpress different database Error establishing a database connection






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have a wordpress plugin that requires connecting to a separate database that is local to the wordpress database.



Is there a way to use wpdb to connect to a different local database?



Does wordpress have a function that returns the database username and password so I dont have to hardcode the user name and password into my plugin?



I tried the following



$years = $this->wpdb->get_results(
$this->wpdb->prepare("SELECT *
FROM `YearsDatabase.years` , ""),
ARRAY_A
);
return $years;









share|improve this question




























    0















    I have a wordpress plugin that requires connecting to a separate database that is local to the wordpress database.



    Is there a way to use wpdb to connect to a different local database?



    Does wordpress have a function that returns the database username and password so I dont have to hardcode the user name and password into my plugin?



    I tried the following



    $years = $this->wpdb->get_results(
    $this->wpdb->prepare("SELECT *
    FROM `YearsDatabase.years` , ""),
    ARRAY_A
    );
    return $years;









    share|improve this question
























      0












      0








      0








      I have a wordpress plugin that requires connecting to a separate database that is local to the wordpress database.



      Is there a way to use wpdb to connect to a different local database?



      Does wordpress have a function that returns the database username and password so I dont have to hardcode the user name and password into my plugin?



      I tried the following



      $years = $this->wpdb->get_results(
      $this->wpdb->prepare("SELECT *
      FROM `YearsDatabase.years` , ""),
      ARRAY_A
      );
      return $years;









      share|improve this question














      I have a wordpress plugin that requires connecting to a separate database that is local to the wordpress database.



      Is there a way to use wpdb to connect to a different local database?



      Does wordpress have a function that returns the database username and password so I dont have to hardcode the user name and password into my plugin?



      I tried the following



      $years = $this->wpdb->get_results(
      $this->wpdb->prepare("SELECT *
      FROM `YearsDatabase.years` , ""),
      ARRAY_A
      );
      return $years;






      php wordpress






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 23:20









      Sebastian FloresSebastian Flores

      86 bronze badges




      86 bronze badges






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Yes no maybe, well yes. The plugin itself would set up its own database connection with its own user so you would have concurrent connections when that plugin runs.



          However, I would be wondering why a plugin needs a seperate database when it could just prefix the tables it creates with a unique identifier to avoid clashes and simply just use the existing database connection.



          Besides that you I think you actually have an error in your sql query try



          `YearsDatabase`.`years`





          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347774%2fis-there-a-way-to-access-a-separate-local-database-from-wordpress%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Yes no maybe, well yes. The plugin itself would set up its own database connection with its own user so you would have concurrent connections when that plugin runs.



            However, I would be wondering why a plugin needs a seperate database when it could just prefix the tables it creates with a unique identifier to avoid clashes and simply just use the existing database connection.



            Besides that you I think you actually have an error in your sql query try



            `YearsDatabase`.`years`





            share|improve this answer



























              0














              Yes no maybe, well yes. The plugin itself would set up its own database connection with its own user so you would have concurrent connections when that plugin runs.



              However, I would be wondering why a plugin needs a seperate database when it could just prefix the tables it creates with a unique identifier to avoid clashes and simply just use the existing database connection.



              Besides that you I think you actually have an error in your sql query try



              `YearsDatabase`.`years`





              share|improve this answer

























                0












                0








                0







                Yes no maybe, well yes. The plugin itself would set up its own database connection with its own user so you would have concurrent connections when that plugin runs.



                However, I would be wondering why a plugin needs a seperate database when it could just prefix the tables it creates with a unique identifier to avoid clashes and simply just use the existing database connection.



                Besides that you I think you actually have an error in your sql query try



                `YearsDatabase`.`years`





                share|improve this answer













                Yes no maybe, well yes. The plugin itself would set up its own database connection with its own user so you would have concurrent connections when that plugin runs.



                However, I would be wondering why a plugin needs a seperate database when it could just prefix the tables it creates with a unique identifier to avoid clashes and simply just use the existing database connection.



                Besides that you I think you actually have an error in your sql query try



                `YearsDatabase`.`years`






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 25 at 23:34









                ChrisChris

                7835 silver badges16 bronze badges




                7835 silver badges16 bronze badges


















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347774%2fis-there-a-way-to-access-a-separate-local-database-from-wordpress%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript