MySQL identifier case questions

The forum for ZeosLib 7.2 Report problems. Ask for help, post proposals for the new version and Zeoslib 7.2 features here. This is a forum that will be edited once the 7.2.x version goes into RC/stable!!

My personal intention for 7.2 is to speed up the internals as optimal a possible for all IDE's. Hope you can help?! Have fun with testing 7.2
miab3
Zeos Test Team
Zeos Test Team
Posts: 1310
Joined: 11.05.2012, 12:32
Location: Poland

Re: MySQL identifier case questions

Post 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ł
marsupilami
Platinum Boarder
Platinum Boarder
Posts: 1935
Joined: 17.01.2011, 14:17

Re: MySQL identifier case questions

Post 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.
leus
Fresh Boarder
Fresh Boarder
Posts: 11
Joined: 07.01.2021, 18:38

Re: MySQL identifier case questions

Post 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
Post Reply