前提・実現したいこと
Node.jsにおいてpg
を使いPostgreSQLでサーバーにレコードを投げています。
その関数を同期的にしようとラッピングしたつもりですが同期的に実行できません。
実際に以下のコードでSQLは投げれているのですが
メインプロセスのcreate_record()内で
Sent -> Finish
で呼び出してほしいものの
Finish -> Sent
となってしまいます。
await
な関数をasync
な関数にラッピングしても
その関数を実行するときは(そのasync-awaitした関数を呼び出す関数自身も)常にawait演算子が付きまとうものなのでしょうか?
何か書き方がまずいのでしょうか?
その他変なところやjsらしからぬ記述がある場合もご指摘ください。
該当のソースコード
js
1'use strict'; 2const pg = require('pg'); 3const config = require('_DATABASE_CONFIG_FILE_');//such as port and address 4const sample_query = require('_SEND_QUERY_FILE_'); 5const pass = require('_PASSWORD_FILE_'); 6 7const database_init = { 8 user: config.USER, 9 host: config.HOST, 10 database: config.DATABASE, 11 password: pass.POSTGRES, 12 port: config.PORT 13}; 14 15/* Execute */ 16create_record(); 17return; 18/* END Execute */ 19 20function create_record() 21{ 22 InsertRecord(sample_query.QUERY); 23 console.log('Finish'); 24} 25 26async function InsertRecord(query_string) 27{ 28 function _InsertRecord() 29 { 30 function _async_InsertRecord(resolve, reject) 31 { 32 const insert_connection = new pg.Client(database_init); 33 insert_connection.connect(); 34 insert_connection.query(query_string, 35 (err, res) => 36 { 37 insert_connection.end(); 38 console.log('Sent'); 39 resolve(); 40 } 41 ); 42 } 43 return new Promise(_async_InsertRecord); 44 } 45 await _InsertRecord(); 46} 47
環境
Windows10 Pro 20H2
VisualStudio 2019 Community
Node.js v12.16.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。