Page 2 of 2

Re: MySQL identifier case questions

Posted: 12.01.2021, 14:54
by miab3
leus wrote: 12.01.2021, 14:24
Beginner question: I'm using git, which branch should I use for testing?
I focus on Zeos8, that - trunk:
viewtopic.php?f=3&t=128311
or svn trunk
or https://github.com/marsupilami79/zeoslib

Michał

Re: MySQL identifier case questions

Posted: 12.01.2021, 22:13
by marsupilami
leus wrote: 12.01.2021, 14:24 Beginner question: I'm using git, which branch should I use for testing?
We try to be compliant to the best practices on SVN and git now. On SVN the branch is called trunk. On the git repo it is called master. Currently these branches are interesting:

SVN -> GIT
/trunk -> master
/branches/7.2-patches -> 7.2-patches
/branches/8.0-patches -> 8.0-patches

All other branches are old / not in use anymore.

Re: MySQL identifier case questions

Posted: 13.01.2021, 00:43
by leus
Okay.

I'm using master from the git repository; once I add the create / drop sql scripts for bugreports, the test doesn't fail here. Is this the way to configure tests?

Code: Select all

[sqlite3]

; DBC protocol name
sqlite3.protocol=sqlite

; BDE alias for performance tests
sqlite3.alias=sqlite_zeoslib

; Host name
sqlite3.host=localhost

; Port number
sqlite3.port=

; Database name
sqlite3.database=C:\delphi\zeoslib\build\zeoslib.db

; User name
sqlite3.user=

; User password
sqlite3.password=

; Flag to rebuild database before each test
sqlite3.rebuild=yes

; SQL delimiter type in SQL scripts (Default, Go, SetTerm or EmptyLine)
sqlite3.delimiter.type=Default

; SQL delimiter string
sqlite3.delimiter=

; SQL scripts to create database objects
sqlite3.create.scripts=create_sqlite.sql,create_sqlite3_bugreport.sql,populate_any.sql

; SQL scripts to drop database objects
sqlite3.drop.scripts=drop_sqlite.sql,drop_sqlite3_bugreport.sql