Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Delphi
- winsock
- VB.NET
- PostgreSQL
- c#
- MFC
- 입문
- SQL
- 데이터베이스
- SDK
- vb
- 문자열
- 기초
- dll
- 초보
- 예제
- 셋업
- xml
- 인스톨
- Firebird
- 시리얼 통신
- Visual Studio 2005
- MySQL
- Visual Basic
- 설치
- 델파이
- 파라미터
- 소니
- WIN32 SDK
- 파이어버드
Archives
- Today
- Total
목록자동연번 (1)
프로그래밍 노트
Firebird에서 auto_increment 같은 자동 연번 field 사용하기
Firebird의 Firebird ISQL Tool을 실행해서 아래 녹색 상자의 Source를 전체를 붙여 넣어보면 어떻게 동작하는지 대충 알 수 있다. create database 'TestAutoNoDb.fdb' user 'sysdba' password 'masterkey'; set autoddl off; create table AutoNoTable ( AutoId integer not null, Fld_Int integer, Fld_Char char(200), constraint pk_AutoNoTable primary key (AutoId) ); create generator gen_AutoId; set term ^; create trigger trg_AutoNoTable_SeqNo for Aut..
데이터베이스/Firebird
2011. 2. 9. 16:32