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
- 인스톨
- winsock
- 문자열
- vb
- SDK
- Visual Studio 2005
- 델파이
- Delphi
- WIN32 SDK
- 설치
- VB.NET
- dll
- SQL
- 데이터베이스
- c#
- Firebird
- 파이어버드
- Visual Basic
- 예제
- 소니
- PostgreSQL
- 시리얼 통신
- 초보
- MFC
- xml
- MySQL
- 기초
- 입문
- 셋업
- 파라미터
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