master
Name already in use
Commits on Oct 3, 2022
-
Merge pull request #145 from deining/contrib
README: correct project URL
Commits on Sep 28, 2022
-
Fixing several typos in documentation and source code files Improving several links in documentation files
Commits on Jul 27, 2022
Commits on Jun 13, 2022
-
ls_postgres.c: Fix cast alignment change warning
Compiling with clang gave: ls_postgres.c:251:13: error: cast from 'char *' to 'int *' increases required alignment from 1 to 4 [-Werror,-Wcast-align] Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
-
ls_mysql.c: Fix cast alignment change warning
Compiling with clang gave: ls_mysql.c:342:13: error: cast from 'char *' to 'int *' increases required alignment from 1 to 4 [-Werror,-Wcast-align] Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
Commits on May 30, 2022
-
Merge pull request #140 from cazfi/trailing-spaces
Remove trailing spaces from documentation
Commits on May 28, 2022
-
Remove trailing spaces from documentation
Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
Commits on Feb 7, 2022
Commits on Feb 6, 2022
-
-
ls_odbc.c: Correct parameter types
Fix compiler warnings about wrong types passed as function parameters
-
ls_odbc.c: Remove unused variables
Fix "warning: unused variable ‘cbNull’" compiler warnings
Commits on Oct 14, 2021
-
Merge pull request #132 from laigor/master
Fix compilation error on Linux and MAC
-
Commits on Aug 27, 2021
-
Merge pull request #128 from w-oertl/master
Support binding of parameters for SQLite3 in conn:execute(sql, ...)
Commits on Aug 18, 2021
-
Support binding of parameters in conn:execute(sql, ...) like the
ODBC driver. No support for prepared statements yet. Note that named parameters must exactly match the placeholder in the SQL statement, i. e. :a or $a or @A needs to include the initial character. When using ? or ?n, use an index starting at 1.
Commits on Sep 16, 2020
-
Merge pull request #124 from ousnius/master
Support for returning ODBC "SQL_GUID" as string
Commits on Sep 14, 2020
-
Support for return SQL_GUID as string
SQL-Server "uniqueidentifier" to be returned as a GUID string.
Commits on Sep 9, 2020
Commits on Sep 8, 2020
-
-
-
-
-
-
-
-
Merge pull request #106 from lal12/master
Added multi statement support for mysql
-
Merge pull request #123 from abidbodal/add-readonly-flag-sqlite3
Add an option to env:connect in sqlite3
Commits on Sep 4, 2020
-
Add an option to env:connect in sqlite3
Add an option in enc:connect in sqlite3 to allow users to connect to the DB in read only mode.
Abid Esmail committedSep 4, 2020
Commits on Jun 14, 2019
-
-
-
-
-
-
Merge pull request #113 from EssGeeEich/master
Fix ODBC types to match standard typedefs