Kenichi Ishigaki
e455116b51
Release 1.67_03
2021-03-31 06:35:06 +09:00
Kenichi Ishigaki
b045ba29b8
Use NVff (Tux++, leont++) #65
2021-03-31 06:30:45 +09:00
Kenichi Ishigaki
7fcca420ba
Apply a patch for t/rt_73787_exponential_buffer_overflow.t (Tux++) #64
2021-03-31 06:23:36 +09:00
Kenichi Ishigaki
7bfec13b7e
Enable math functions introduced in SQLite 3.35.0
2021-03-31 06:22:27 +09:00
Kenichi Ishigaki
4a81dcf4c7
Upgrade SQLite to 3.35.3
2021-03-31 06:22:09 +09:00
Kenichi Ishigaki
c15f5c5d4f
Support versions released in 2021
2021-03-31 06:21:40 +09:00
Kenichi Ishigaki
3dff252633
Use https
2021-03-31 06:21:08 +09:00
Kenichi Ishigaki
242d674a55
Release 1.67_02
2020-12-06 02:04:08 +09:00
Kenichi Ishigaki
2db48b8ca1
Update Changes
2020-12-06 02:01:55 +09:00
Kenichi Ishigaki
4d1b28c393
Expose sqlite3_txn_state
2020-12-06 02:00:27 +09:00
Kenichi Ishigaki
fa6fa30878
Add a few constants
2020-12-06 01:59:56 +09:00
Kenichi Ishigaki
09278cad8e
Updated SQLite to 3.34.0
2020-12-05 18:19:38 +09:00
Kenichi Ishigaki
e51324a7a3
Release 1.67_01
2020-11-24 21:57:43 +09:00
Kenichi Ishigaki
9eb89925a8
Add reporter's id
2020-11-24 21:53:18 +09:00
Kenichi Ishigaki
dd6ab32da9
Use av_fetch instead of av_shift, to avoid leaks
2020-11-23 21:41:57 +09:00
Kenichi Ishigaki
c5cce9f54f
Strawberry perl seems to be installed already
2020-11-23 21:25:54 +09:00
Kenichi Ishigaki
d380158688
Use quadmath_snprintf if USE_QUADMATH is defined
2020-11-23 21:16:26 +09:00
Kenichi Ishigaki
7c01d15368
Update Changes
2020-11-06 06:16:07 +09:00
Kenichi Ishigaki
bd949a1c5d
Merge pull request #63 from toddr/foo
...
Switch to XSLoader
2020-11-06 06:14:28 +09:00
Todd Rinaldo
077ce52491
Switch to XSLoader
2020-11-05 10:54:42 -06:00
Kenichi Ishigaki
f6f75fa325
Update SQLite to 3.33.0
2020-08-30 11:16:42 +09:00
Kenichi Ishigaki
108b4a9b54
Release 1.66
2020-08-30 11:12:12 +09:00
Kenichi Ishigaki
3e91167b0c
Release 1.65_03
2020-07-27 01:41:36 +09:00
Kenichi Ishigaki
4d7d00544e
Update constants
2020-07-27 01:36:35 +09:00
Kenichi Ishigaki
9159838d96
Updated SQLite to 3.32.3
2020-07-27 01:36:01 +09:00
Kenichi Ishigaki
3dfcbcd8f1
Release 1.65_02
2020-02-08 22:00:34 +09:00
Kenichi Ishigaki
28cb59487f
Update constants
2020-02-08 20:07:50 +09:00
Kenichi Ishigaki
a47cb92cfd
Update SQLite to 3.31.1
2020-02-08 20:01:49 +09:00
Kenichi Ishigaki
d958b05c1d
Release 1.65_01
2020-01-18 10:53:56 +09:00
Kenichi Ishigaki
5797c5a462
Merge branch 'workflow'
2020-01-18 10:53:30 +09:00
Kenichi Ishigaki
ccf4afe0f4
Test only 5.8 and the latest
2020-01-18 10:53:18 +09:00
Kenichi Ishigaki
07367324c5
Add yaml files for windows and mac
2020-01-18 10:46:34 +09:00
Kenichi Ishigaki
35902ff85a
Simply build.yml
2020-01-18 10:42:23 +09:00
Kenichi Ishigaki
893dcfeb80
Add cpanfile
2020-01-18 10:36:06 +09:00
Kenichi Ishigaki
f367353b6a
Add a workflow yaml
2020-01-18 10:32:00 +09:00
Kenichi Ishigaki
5f5caa286f
Add more tests for create_function
2020-01-18 10:01:33 +09:00
Kenichi Ishigaki
2e455b0861
Add a note on the return value of a function for create_function
2020-01-18 10:01:07 +09:00
Kenichi Ishigaki
0cbc86a243
update constants
2019-10-27 23:53:30 +09:00
Kenichi Ishigaki
3565afd633
update SQLite to 3.30.1
2019-10-27 23:50:13 +09:00
Kenichi Ishigaki
8b3a041003
initialize eof ( fix #55 )
2019-08-18 20:12:51 +09:00
Kenichi Ishigaki
ccd1995967
Merge pull request #57 from pali/master
...
Add DBI SQL_BOOLEAN type as alias for SQLITE_INTEGER
2019-08-16 22:48:13 +09:00
Pali
6cffbab90e
Add DBI SQL_BOOLEAN type as alias for SQLITE_INTEGER
...
According to SQLite documentation, boolean values are stored as integers:
https://www.sqlite.org/datatype3.html#boolean_datatype
2019-08-16 15:27:48 +02:00
Kenichi Ishigaki
583b5b131e
Merge pull request #56 from pali/master
...
Add DBI SQL_BIT, SQL_BINARY, SQL_VARBINARY and SQL_LONGVARBINARY types as alias for SQLITE_BLOB
2019-08-16 22:25:43 +09:00
Pali
012ad14605
Add DBI SQL_BIT, SQL_BINARY, SQL_VARBINARY and SQL_LONGVARBINARY types as alias for SQLITE_BLOB
...
Other DBI drivers use DBI SQL_VARBINARY type for binary data, including
SQLite3 ODBC driver (via DBD::ODBC). So this change allows to use DBI
SQL_VARBINARY type for SQLite3 blob data.
2019-08-16 14:41:37 +02:00
Kenichi Ishigaki
523d5a91ee
Merge pull request #54 from ppisar/undefined_filename
...
Initialize filename variable in sqlite_db_filename()
2019-08-12 12:03:30 +03:00
Kenichi Ishigaki
dd68440d7d
Merge branch 'allow_created_function_to_return_blob'
2019-08-12 18:02:30 +09:00
Kenichi Ishigaki
1bab5016df
release 1.64
2019-08-12 18:01:57 +09:00
Kenichi Ishigaki
64e4c9d299
Use trusty to test
2019-07-30 00:26:47 +09:00
Petr Písař
0c92dbae92
Initialize filename variable in sqlite_db_filename()
...
If sqlite library is too old, filename variable in
sqlite_db_filename() function was never defined. In spite of that the
variable was used in later condition.
This patch fixes it.
2019-07-29 16:59:44 +02:00
Kenichi Ishigaki
13f3416e3c
allow created function to return [value, sql_type] to specify the value is a blob explicitly
2019-07-21 01:50:33 +09:00