横持ちはいわゆる「普通の」データの持ちかたのこと。 例えばレコードごとにa, b, c, dの4つの属性を持つ テーブルを作る場合、次のようなテーブルが横持ちテーブルである。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * node.jsを使った対話型コマンドラインツール | |
| * node.jsはイベントループなので、他の言語のようにwhileで入力待ちしたりしなくていいのがすばらしい | |
| * 入出力はreadlineを使う | |
| */ | |
| var rl = require('readline'); // readline | |
| var utl = require('util'); |
NewerOlder