mssql ConnectionPool request() exception NOT A FUNCTIONHow can I use a single mssql connection pool across several routes in an Express 4 web application?In Node.js, how do I “include” functions from my other files?How is an HTTP POST request made in node.js?Node.js Best Practice Exception Handlingmap function for objects (instead of arrays)How to show data from mysql in nodejs with a refresh rateNode JS and SQL Server 2008 R2 ExpressWhy this error coming while running nodejs server?Undefined _id populate with express, moongose/MongoDB on NodejsWait for data from external API before making POST requestWhy express.Router() while separating routes

Map a function that takes arguments in different levels of a list

Why are Latin and Sanskrit called dead languages?

What percentage of the mass/energy of the universe is in the form of electromagnetic waves?

Is it rude to ask my opponent to resign an online game when they have a lost endgame?

garage light with two hots and one neutral

Why KVM VPS is slower then OPENVZ

What happens if you just start drawing from the Deck of Many Things without declaring any number of cards?

How to run a command 1 out of N times in Bash

Is torque as fundamental a concept as force?

Is it safe for a student to give negative feedback in student evaluations?

Why didn't Thatcher give Hong Kong to Taiwan?

Using font to highlight a god's speech in dialogue

How do I stop making people jump at home and at work?

When making yogurt, why doesn't bad bacteria grow as well?

How do you manage to study and have a balance in your life at the same time?

Calculate Landau's function

Some questions about Lightning and Tor

Is mathematics truth?

Where is the correct position to set right or left of muscle names for anatomical names?

co-son-in-law or co-brother

How does Harry wear the invisibility cloak?

Updating multiple vector points at once with vertex editor in QGIS?

Meaning of "educating the ice"

'Hard work never hurt anyone' Why not 'hurts'?



mssql ConnectionPool request() exception NOT A FUNCTION


How can I use a single mssql connection pool across several routes in an Express 4 web application?In Node.js, how do I “include” functions from my other files?How is an HTTP POST request made in node.js?Node.js Best Practice Exception Handlingmap function for objects (instead of arrays)How to show data from mysql in nodejs with a refresh rateNode JS and SQL Server 2008 R2 ExpressWhy this error coming while running nodejs server?Undefined _id populate with express, moongose/MongoDB on NodejsWait for data from external API before making POST requestWhy express.Router() while separating routes






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








0















I followed this question here using mssql 5.0.4



How can I use a single mssql connection pool across several routes in an Express 4 web application?



and I always get the



pool.request() is not a function


exception. What did I do wrong.



Exactly same 'db.js'



const sql = require('mssql')
const config = /*...*/

const poolPromise = new sql.ConnectionPool(config)
.connect()
.then(pool =>
console.log('Connected to MSSQL')
return pool
)
.catch(err => console.log('Database Connection Failed! Bad Config: ', err))

module.exports =
sql, poolPromise



and the call at:



const poolPromise = require('./db')

module.exports =
get: async (req, res) =>
try
const pool = await poolPromise
// RUNTIME ERROR EXCEPTION at the following line
const result = await pool.request()
.query('select * from cars')

res.json(result.recordset)
catch (err)
res.status(500)
res.send(err.message)

)










share|improve this question
























  • You never declared the pool.request function. On the link you just posted, check routes/set1.js file.

    – Rasnick
    Mar 28 at 2:55











  • @Rasnick, what do you mean I did not declare the pool.request. It is under the comment // RUNTIME ...

    – TX T
    Mar 28 at 3:13

















0















I followed this question here using mssql 5.0.4



How can I use a single mssql connection pool across several routes in an Express 4 web application?



and I always get the



pool.request() is not a function


exception. What did I do wrong.



Exactly same 'db.js'



const sql = require('mssql')
const config = /*...*/

const poolPromise = new sql.ConnectionPool(config)
.connect()
.then(pool =>
console.log('Connected to MSSQL')
return pool
)
.catch(err => console.log('Database Connection Failed! Bad Config: ', err))

module.exports =
sql, poolPromise



and the call at:



const poolPromise = require('./db')

module.exports =
get: async (req, res) =>
try
const pool = await poolPromise
// RUNTIME ERROR EXCEPTION at the following line
const result = await pool.request()
.query('select * from cars')

res.json(result.recordset)
catch (err)
res.status(500)
res.send(err.message)

)










share|improve this question
























  • You never declared the pool.request function. On the link you just posted, check routes/set1.js file.

    – Rasnick
    Mar 28 at 2:55











  • @Rasnick, what do you mean I did not declare the pool.request. It is under the comment // RUNTIME ...

    – TX T
    Mar 28 at 3:13













0












0








0








I followed this question here using mssql 5.0.4



How can I use a single mssql connection pool across several routes in an Express 4 web application?



and I always get the



pool.request() is not a function


exception. What did I do wrong.



Exactly same 'db.js'



const sql = require('mssql')
const config = /*...*/

const poolPromise = new sql.ConnectionPool(config)
.connect()
.then(pool =>
console.log('Connected to MSSQL')
return pool
)
.catch(err => console.log('Database Connection Failed! Bad Config: ', err))

module.exports =
sql, poolPromise



and the call at:



const poolPromise = require('./db')

module.exports =
get: async (req, res) =>
try
const pool = await poolPromise
// RUNTIME ERROR EXCEPTION at the following line
const result = await pool.request()
.query('select * from cars')

res.json(result.recordset)
catch (err)
res.status(500)
res.send(err.message)

)










share|improve this question














I followed this question here using mssql 5.0.4



How can I use a single mssql connection pool across several routes in an Express 4 web application?



and I always get the



pool.request() is not a function


exception. What did I do wrong.



Exactly same 'db.js'



const sql = require('mssql')
const config = /*...*/

const poolPromise = new sql.ConnectionPool(config)
.connect()
.then(pool =>
console.log('Connected to MSSQL')
return pool
)
.catch(err => console.log('Database Connection Failed! Bad Config: ', err))

module.exports =
sql, poolPromise



and the call at:



const poolPromise = require('./db')

module.exports =
get: async (req, res) =>
try
const pool = await poolPromise
// RUNTIME ERROR EXCEPTION at the following line
const result = await pool.request()
.query('select * from cars')

res.json(result.recordset)
catch (err)
res.status(500)
res.send(err.message)

)







node.js sql-server






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 1:45









TX TTX T

4341 gold badge8 silver badges23 bronze badges




4341 gold badge8 silver badges23 bronze badges















  • You never declared the pool.request function. On the link you just posted, check routes/set1.js file.

    – Rasnick
    Mar 28 at 2:55











  • @Rasnick, what do you mean I did not declare the pool.request. It is under the comment // RUNTIME ...

    – TX T
    Mar 28 at 3:13

















  • You never declared the pool.request function. On the link you just posted, check routes/set1.js file.

    – Rasnick
    Mar 28 at 2:55











  • @Rasnick, what do you mean I did not declare the pool.request. It is under the comment // RUNTIME ...

    – TX T
    Mar 28 at 3:13
















You never declared the pool.request function. On the link you just posted, check routes/set1.js file.

– Rasnick
Mar 28 at 2:55





You never declared the pool.request function. On the link you just posted, check routes/set1.js file.

– Rasnick
Mar 28 at 2:55













@Rasnick, what do you mean I did not declare the pool.request. It is under the comment // RUNTIME ...

– TX T
Mar 28 at 3:13





@Rasnick, what do you mean I did not declare the pool.request. It is under the comment // RUNTIME ...

– TX T
Mar 28 at 3:13












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%2f55388986%2fmssql-connectionpool-request-exception-not-a-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




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using 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%2f55388986%2fmssql-connectionpool-request-exception-not-a-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







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