Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-06 | Use the right int64 type for INTEGER rows in the db | louiz’ | |
2018-08-23 | MaxHistoryLength now has some sensible default value if the user set a ↵ | louiz’ | |
negative one | |||
2018-04-24 | Revert "Use a different Date data type" | louiz’ | |
This reverts commit 857c7d3972a03cbeebf730d99b924d3710dee6a0. | |||
2018-04-11 | Use a different Date data type | louiz’ | |
PLEASE backup your database before testing this commit, and report any migration issue. In postgresql, we use timestamp with timezone. In sqlite3 we use REAL (the date is expressed as julianday) This requires a migration of the muclogline_ table: In postgresql it’s pretty simple, we convert all the integer into timestamps With sqlite3, we actually rename the table, create the new one with the correct type, then copy everything to the new table, with a conversion function for the Date_ column, and then we delete the old table. fix #3343 | |||
2018-03-17 | Revert "Use std::optional<bool> instead of OptionalBool" | louiz’ | |
This reverts commit ba879a882e031d7b8503f78fe41d1210000c96ca. | |||
2018-03-17 | Revert "Use if constexpr to make things a lot more readable" | louiz’ | |
This reverts commit d62ca9f87906be6f046fe9d07afb8bfb69c166e3. | |||
2018-03-16 | Use if constexpr to make things a lot more readable | louiz’ | |
2018-03-16 | Use std::optional<bool> instead of OptionalBool | louiz’ | |
2018-02-15 | Fix the actual_bind versions for integrals | louiz’ | |
2018-02-11 | Fix a few warnings | louiz’ | |
2018-01-28 | This should fix the int conversion warning on 32bits arch | louiz’ | |
2018-01-14 | Add a DEBUG_SQL_QUERIES to log info about the executed SQL queries | louiz’ | |
fix #3324 | |||
2017-12-02 | Handle postgresql and sqlite3 libs properly | louiz’ | |
Do not fail to compile when one of them is missing but the other one is not. Raise an error when trying to open a database with the missing library. see #3237 | |||
2017-12-02 | Add postgresql support | louiz’ | |
2017-07-08 | Remove many log_debug from the database module | louiz’ | |
2017-06-23 | Move a few functions from select_query to query | louiz’ | |
2017-06-16 | Using OptionalBool, add RecordHistoryOptional col into IrcChannelOptions table | louiz’ | |
ref #3269 | |||
2017-06-14 | Explicitely declare the add_param<Id> specialization | louiz’ | |
2017-06-14 | Add a Statement class to manage the sqlite3_stmt objects and avoid leaks | louiz’ | |
2017-06-14 | Implement our own database ORM, and update the whole code to use it | louiz’ | |
Entirely replace LiteSQL fix #3271 |