Files
loongoffice/connectivity
Stephan Bergmann c8eaadb5d7 Remaining loplugin:bufferadd
...that had been missing because the plugin didn't implement postRun, so it
didn't report anything when run as part of the shared plugin.  (But did report
the expected warnings when run as a standalone plugin during
CompilerTest_compilerplugins_clang.)

Most fixes are straightforward.  A noteworthy one is PreparedStatement::setBytes
in connectivity/source/drivers/postgresql/pq_preparedstatement.cxx:  The old
preallocation of a 20 character OStringBuffer might have prevented

  buf.append( reinterpret_cast<char *>(escapedString), len -1 );

from potentially throwing std::bad_alloc, which would have caused escapedString
to be leaked.  Even though that 20-character preallocation was likely just
random junk and not meant to address the potential leak, lets address it now.

Change-Id: Ib506332d061684a22a74e5e39e591539fd2c4900
Reviewed-on: https://gerrit.libreoffice.org/80925
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-10-17 09:03:53 +02:00
..
2019-05-12 23:46:14 +02:00
2019-10-17 09:03:53 +02:00
2019-09-12 17:48:56 +02:00

Contains database pieces, drivers, etc.

[[dbaccess]] builds UI on top of this.

=== mysql_test ===

- The CppunitTest_mysql_test unit test can be used to test the mysqlc
  library with any versions of mysql or mariadb server of your choice.
  
- This test does not run automatically. It can be triggered with setting
  the environment variable "CONNECTIVITY_TEST_MYSQL_DRIVER".
  
- The environment variable should contain a URL of the following format:
  [user]/[passwd]@sdbc:mysql:mysqlc:[host]:[port]/[db_name]