123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #!/bin/sh
- #
- # Script to create a table 'FPdev' and to fill it with data.
- # The script accepts an optional argument :
- # A database to connect to. (default 'testdb')
- #
- # Collect the database
- DATABASE=testdb.gdb
- # Choose one of the following:
- # ISQL=isql
- ISQL=/usr/interbase/bin/isql
- #
- # Don't edit after this.
- #
- echo -n "Creating and filling table FPdev in database $DATABASE..."
- # >/dev/null 2>&1
- ${ISQL} << EOF
- CREATE DATABASE "$DATABASE";
- create table FPdev (
- id INT NOT NULL,
- UserName varchar(50),
- InstEmail CHAR(50),
- PRIMARY KEY (id));
- insert into FPdev values ('1','Michael Van Canneyt','[email protected]');
- insert into FPdev values ('2','Florian Klaempfl','[email protected]');
- insert into FPdev values ('3','Carl-Eric Codere','[email protected]');
- insert into FPdev values ('4','Daniel Mantione','[email protected]');
- insert into FPdev values ('5','Pierre Muller','[email protected]');
- insert into FPdev values ('6','Jonas Maebe','[email protected]');
- insert into FPdev values ('7','Peter Vreman','[email protected]');
- insert into FPdev values ('8','Gerry Dubois','[email protected]');
- create table test (
- timestamp_fld timestamp,
- smallint_fld smallint,
- integer_fld integer,
- float_fld float,
- double_fld double precision,
- char_fld char(10),
- varchar_fld varchar(50));
- insert into test values ('12.1.2000 00:30',10,70000,12.5,20.5,'testchar','testvarchar');
- commit;
- EOF
- if [ ! $? = 0 ]; then
- echo "Failed."
- else
- echo "Done."
- fi
- # Ready
|