일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 일본유학
- 韓国
- 스펙정보
- ios
- 한국판뉴딜
- gbd-200
- 사용자100명
- 사양
- QA
- 명령어
- 환경정보
- JMeter
- DevNet
- 코로나바이러스
- 부자아빠가난한아빠
- 4차산업
- 리눅스
- 일본대학원
- certification
- 韓国ヒップホップ
- 정보처리기사
- 사양정보
- 다음메일
- move앱
- 스마트시티
- 동시접속
- ads.txt
- 5G
- 성능측정
- 200-301
- Today
- Total
목록etc.. 기타 카테고리 2 (42)
IT 컴퓨터공학 자료실
Table (database) A table is a collection of related data held in a structured format within a database. It consists of fields (columns), and rows. 데이터베이스에서 테이블이란 데이터베이스 내부에서 구조화된 데이터의 집합이다. 이것은 컬럼(field)과 행으로 구성된다. In relational databases and flat file databases, a table is a set of data elements (values) using a model of vertical columns (which are identified by their name) and horizontal rows,..
関係モデルはIBMのエドガー・F・コッドによって考案された。現在もっとも広く用いられているデータモデルである。複数の関係(リレーション)を基本的なデータ型とする。データベースの利用者は、クエリ(問い掛け)をデータベースに与え、複数の関係を連結させてデータを検索したり、変更することができる。データは表に似た構造で管理され、複数のデータ群が関係(リレーション)と呼ばれる構造で相互連結可能である。関係は組(タプル、表における行に相当する)、属性(アトリビュート、表における列に相当する)、定義域(ドメイン)、候補キー(主キー)、外部キーなどによって構成される。SQLなどに代表されるデータベース言語(問い合わせ言語)を用いて、関係に対して制限・射影・結合・和・差・交わりなどの関係代数演算(集合演算を含む)ないし関係論理演算を行うことで結果を取り出す。 관계형 모델은 IBM 의 E.F. Cod..
関係データベース(かんけいデータベース、リレーショナルデータベース、英: relational database)は関係モデル(リレーショナルデータモデル、後述)にもとづいて設計、開発されるデータベースである。現在では、データベースという語が関係データベースを指していることが多い。関係データベースを管理するためのソフトウェアを関係データベース管理システム (RDBMS) と呼ぶ。Oracle Database、Microsoft SQL Server、MySQL、PostgreSQL、DB2、FileMaker、H2 Database などのデータベース管理システム (DBMS) がサポートするのは関係データベースである。関係データベースに含まれないデータベースは、NoSQL などを参照。 관계 데이터베이스 (관계 데이터베이스, 관계형 데이터베이스 , 영어 : relation..
Computers and storage devices are full of data, and there are many different forms of data, depending on how often the data are accessed or modified. Persistent data are those that are typically not accessed and rarely modified. Database persistent data are typically stored on a server and are more commonly accessed than archived data. With archived data, or those stored on disks or tapes, the i..
It is often necessary to store the value of the fields of an object to disk and then, later, retrieve this data. Although this is easy to achieve without relying on serialization, this approach is often cumbersome and error prone, and becomes progressively more complex when you need to track a hierarchy of objects. Imagine writing a large business application, that contains thousands of objects,..
リファクタリング (refactoring) とはコンピュータプログラミングにおいて、プログラムの外部から見た動作を変えずにソースコードの内部構造を整理すること。いくつかのリファクタリング手法の総称としても使われる。十分に確立された技術とはいえず、「リファクタリング」の語にも厳密な定義があるわけではない。 리팩토링 (refactoring)은 컴퓨터 프로그래밍 에서 프로그램 외부에서 본 동작을 바꾸지 않고 소스 코드 의 내부 구조를 정리하는 것을 말한다. リファクタリング登場の経緯と目的리팩토링의 등장 경위와 목적 リファクタリングが登場する以前は、一度正常な動作をしたプログラムは二度と手を触れるべきではないと言われていた。下手に手を加えて動作が変わってしまうと、それに伴って関連する部分にも修正が加えられ、やがて修正はプロジェクト全体に波及し対処しきれなくなるかも知れ..
In computer science, a metaobject is an object that manipulates, creates, describes, or implements other objects (including itself). The object that the metaobject is about is called the base object. Some information that a metaobject might store is the base object's type, interface, class, methods, attributes, parse tree, etc. Metaobjects are examples of the computer science concept of reflecti..
In object-oriented programming, association defines a relationship between classes of objects that allows one object instance to cause another to perform an action on its behalf. This relationship is structural, because it specifies that objects of one kind are connected to objects of another and does not represent behaviour. 객체지향에서 association 은 클래스간의 관계에서 한 오브젝트가 다른 오브젝트의 인스턴스의 이용에 연관이 되는 관계를 ..
Skeleton programming is a style of computer programming based on simple high-level program structures and so called dummy code. Program skeletons resemble pseudocode, but allow parsing, compilation and testing of the code. 스켈레톤 프로그래밍은 간단한 고레벨 프로그램구조에 기반으로 하여 소위 더미 코드라고 불린다. 프로그램의 스켈레톤은 수도코드와 유사하지만 파싱이나 컴파일, 코드 테스트가 가능하다. Dummy code is inserted in a program skeleton to simulate processing and avo..
git(ギットは、プログラムのソースコードなどの変更履歴を記録・追跡するための分散型バージョン管理システムである。Linuxカーネルのソースコード管理に用いるためにリーナス・トーバルズによって開発され、それ以降ほかの多くのプロジェクトで採用されている。Linuxカーネルのような巨大プロジェクトにも対応できるように、動作速度に重点が置かれている。現在のメンテナンスは濱野純 (Junio C Hamano) が担当している。gitでは、各ユーザのホームディレクトリに、全履歴を含んだリポジトリの完全な複製が作られる。したがって、ネットワークにアクセスできないなどの理由で中心リポジトリにアクセスできない環境でも、履歴の調査や変更の記録といったほとんどの作業を行うことができる。これが「分散型」と呼ばれる理由である。Git은 프로그램의 소스 코드 등의 변경 내역을 기록하고 추적하기 위한 분..