mirror of
https://github.com/SOCI/soci.git
synced 2026-05-03 17:59:18 -05:00
2df1438c3b
No real changes.
12 lines
420 B
Bash
Executable File
12 lines
420 B
Bash
Executable File
#!/bin/bash -e
|
|
# Configure Firebird database for SOCI build in CI builds
|
|
#
|
|
# Mateusz Loskot <mateusz@loskot.net>, http://github.com/SOCI
|
|
#
|
|
source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
|
|
|
|
isql-fb -z -q -i /dev/null # --version
|
|
echo 'CREATE DATABASE "LOCALHOST:/tmp/soci_test.fdb" PAGE_SIZE = 16384;' > /tmp/create_soci_test.sql
|
|
isql-fb -u SYSDBA -p masterkey -i /tmp/create_soci_test.sql -q
|
|
cat /tmp/create_soci_test.sql
|