Getting the rows values from the DB.ALL functionIs there an “exists” function for jQuery?Which “href” value should I use for JavaScript links, “#” or “javascript:void(0)”?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?var functionName = function() vs function functionName() Set a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?Improve INSERT-per-second performance of SQLite?How do I remove a particular element from an array in JavaScript?How do I return the response from an asynchronous call?

Multi tool use
Multi tool use

Was there ever a Kickstart that took advantage of 68020+ instructions that would work on an A2000?

What is the unit of the area when geometry attributes are calculated in QGIS?

Pressure inside an infinite ocean?

How can I get a job without pushing my family's income into a higher tax bracket?

Reconstruct a matrix from its traces

Do I really need diodes to receive MIDI?

Python password manager

What is the most remote airport from the center of the city it supposedly serves?

How do I tell my manager that his code review comment is wrong?

For a benzene shown in a skeletal structure, what does a substituent to the center of the ring mean?

Confused about proofs by contradiction, the Law of the Excluded Middle and existence of consistent axiomatic systems.

Should one double the thirds or the fifth in chords?

What word means "to make something obsolete"?

Can fracking help reduce CO2?

Is there a legal ground for stripping the UK of its UN Veto if Scotland and/or N.Ireland split from the UK?

I may be a fraud

Type-check an expression

In a Latex Table, how can I automatically resize cell heights to account for superscripts?

Upside-Down Pyramid Addition...REVERSED!

Which industry am I working in? Software development or financial services?

How did Arya get her dagger back from Sansa?

Are we obligated to aspire to be Talmidei Chachamim?

Is induction neccessary for proving that every injective mapping of a finite set into itself is a mapping onto itself?

Does this article imply that Turing-Computability is not the same as "effectively computable"?



Getting the rows values from the DB.ALL function


Is there an “exists” function for jQuery?Which “href” value should I use for JavaScript links, “#” or “javascript:void(0)”?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?var functionName = function() vs function functionName() Set a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?Improve INSERT-per-second performance of SQLite?How do I remove a particular element from an array in JavaScript?How do I return the response from an asynchronous call?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















Running the hapi server with sqLITE and trying to get the value from the database into a json. I got the console and I got the value I want from the console but can't get the value outside the function.



 handler: (request, h) => 
let sql = `SELECT TRIAL_ID as indexTrial, URL as urlImage FROM TRIAL`;
var test ='hi';


db.all(sql, (err, rows) =>
if (err)
throw err;

test= JSON.stringify(rows);
test =rows;
//return rows;
);


return test;




I'm hoping to get the the "row' value from this but I just can't remember or know how to get it.



Thanks for reading and I hope you can help.










share|improve this question




























    0















    Running the hapi server with sqLITE and trying to get the value from the database into a json. I got the console and I got the value I want from the console but can't get the value outside the function.



     handler: (request, h) => 
    let sql = `SELECT TRIAL_ID as indexTrial, URL as urlImage FROM TRIAL`;
    var test ='hi';


    db.all(sql, (err, rows) =>
    if (err)
    throw err;

    test= JSON.stringify(rows);
    test =rows;
    //return rows;
    );


    return test;




    I'm hoping to get the the "row' value from this but I just can't remember or know how to get it.



    Thanks for reading and I hope you can help.










    share|improve this question
























      0












      0








      0








      Running the hapi server with sqLITE and trying to get the value from the database into a json. I got the console and I got the value I want from the console but can't get the value outside the function.



       handler: (request, h) => 
      let sql = `SELECT TRIAL_ID as indexTrial, URL as urlImage FROM TRIAL`;
      var test ='hi';


      db.all(sql, (err, rows) =>
      if (err)
      throw err;

      test= JSON.stringify(rows);
      test =rows;
      //return rows;
      );


      return test;




      I'm hoping to get the the "row' value from this but I just can't remember or know how to get it.



      Thanks for reading and I hope you can help.










      share|improve this question














      Running the hapi server with sqLITE and trying to get the value from the database into a json. I got the console and I got the value I want from the console but can't get the value outside the function.



       handler: (request, h) => 
      let sql = `SELECT TRIAL_ID as indexTrial, URL as urlImage FROM TRIAL`;
      var test ='hi';


      db.all(sql, (err, rows) =>
      if (err)
      throw err;

      test= JSON.stringify(rows);
      test =rows;
      //return rows;
      );


      return test;




      I'm hoping to get the the "row' value from this but I just can't remember or know how to get it.



      Thanks for reading and I hope you can help.







      javascript sqlite sqlite3






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 20:57









      Branderson20Branderson20

      84




      84






















          0






          active

          oldest

          votes












          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%2f55307675%2fgetting-the-rows-values-from-the-db-all-function%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f55307675%2fgetting-the-rows-values-from-the-db-all-function%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







          2eVE7o jN L Pb 0uzlXm2JN8Ug2JSNXCVjK1tFbFzSUpElPVYydBDMv4y0
          5OXx,sNs,z,Bg,Q49,SSrkarA3u1jf0zbc hkary 5 9,4SI0KgihN 25ZJU4546ym9WCF56 xg0YWLPNiCYu4NnDLG1

          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

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          위키백과:대문 둘러보기 메뉴기부 안내모바일판 대문크리에이티브 커먼즈 저작자표시-동일조건변경허락 3.0CebuanoDeutschEnglishEspañolFrançaisItaliano日本語NederlandsPolskiPortuguêsРусскийSvenskaTiếng ViệtWinaray中文العربيةCatalàفارسیSrpskiУкраїнськаБългарскиНохчийнČeštinaDanskEsperantoEuskaraSuomiעבריתMagyarՀայերենBahasa IndonesiaҚазақшаBaso MinangkabauBahasa MelayuBân-lâm-gúNorskRomânăSrpskohrvatskiSlovenčinaTürkçe