1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
|
/*
* Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "sqlide_generics_private.h"
#include "recordset_cdbc_storage.h"
#include "recordset_be.h"
#include "sqlide_generics.h"
#include "grtsqlparser/sql_facade.h"
#include "base/string_utilities.h"
#include "base/sqlstring.h"
#include <sqlite/query.hpp>
#include <boost/cstdint.hpp>
#include <boost/foreach.hpp>
#include <algorithm>
#include <ctype.h>
using namespace bec;
using namespace grt;
using namespace base;
Recordset_cdbc_storage::Recordset_cdbc_storage(GRTManager *grtm)
:
Recordset_sql_storage(grtm),
_reloadable(true),
_gather_field_info(false)
{
}
Recordset_cdbc_storage::~Recordset_cdbc_storage()
{
}
class FetchVar : public boost::static_visitor<sqlite::variant_t>
{
public:
FetchVar(sql::ResultSet *rs) : _rs(rs), _foreknown_blob_size(-1) {}
result_type operator()(const sqlite::unknown_t &v, const sqlite::variant_t &index) const { return _rs->getString(boost::get<int>(index)); }
result_type operator()(const sqlite::null_t &v, const sqlite::variant_t &index) const { return sqlite::null_t(); }
result_type operator()(const std::string &v, const sqlite::variant_t &index) const { return _rs->getString(boost::get<int>(index)); }
result_type operator()(const int &v, const sqlite::variant_t &index) const { return _rs->getInt(boost::get<int>(index)); }
result_type operator()(const boost::int64_t &v, const sqlite::variant_t &index) const { return (boost::int64_t)_rs->getInt64(boost::get<int>(index)); }
result_type operator()(const long double &v, const sqlite::variant_t &index) const { return _rs->getDouble(boost::get<int>(index)); }
result_type operator()(const sqlite::blob_ref_t &v, const sqlite::variant_t &index)
{
sqlite::blob_ref_t blob_ref;
std::auto_ptr<std::istream> is(_rs->getBlob(boost::get<int>(index)));
if ((size_t)-1 == _foreknown_blob_size)
{
const size_t BUFF_SIZE= 4096;
std::list<std::vector<char> > chunks;
std::streamsize blob_size= 0;
while (!is->eof())
{
chunks.resize(chunks.size()+1);
std::vector<char> &chunk= *chunks.rbegin();
chunk.resize(BUFF_SIZE);
is->read(&chunk[0], BUFF_SIZE);
blob_size+= is->gcount();
}
blob_ref.reset(new sqlite::blob_t(chunks.size() * BUFF_SIZE));
sqlite::blob_t *blob= blob_ref.get();
int n= 0;
BOOST_FOREACH (const std::vector<char> &chunk, chunks)
{
memcpy(&(*blob)[n * BUFF_SIZE], &chunk[0], BUFF_SIZE);
++n;
}
blob->resize((size_t) blob_size); // TODO: make this compatible to streamsize.
}
else
{
blob_ref.reset(new sqlite::blob_t(_foreknown_blob_size));
sqlite::blob_t *blob= blob_ref.get();
is->read((char*)&(*blob)[0], _foreknown_blob_size);
if ((size_t)is->gcount() != _foreknown_blob_size)
throw std::runtime_error(strfmt("BLOB size mismatch: server reports %i bytes, fetched %i bytes", (int)_foreknown_blob_size, (int)is->gcount()));
_foreknown_blob_size= -1;
}
return blob_ref;
}
public:
void foreknown_blob_size(size_t val) { _foreknown_blob_size= val; }
private:
sql::ResultSet *_rs;
size_t _foreknown_blob_size;
};
size_t Recordset_cdbc_storage::determine_pkey_columns(Recordset::Column_names &column_names, Recordset::Column_types &column_types, Recordset::Column_types &real_column_types)
{
// a connection other than the user connection must be used for fetching metadata, otherwise we change the state of the connection
sql::Dbc_connection_handler::Ref conn;
base::RecMutexLock lock(_getAuxConnection(conn, true)); //we can't perform full connection check, hence we use the simple one
{
sql::DatabaseMetaData *conn_meta(conn->ref->getMetaData());
try
{
// XXX this can be slow because of the I_S queries, depending on the server
std::auto_ptr<sql::ResultSet> rs(conn_meta->getBestRowIdentifier("", _schema_name, _table_name, 0, 0));
size_t rowid_col_count= rs->rowsCount();
if (rowid_col_count > 0)
{
_pkey_columns.reserve(rowid_col_count);
while (rs->next())
{
Recordset::Column_names::const_iterator i=
std::find(column_names.begin(), column_names.end(), rs->getString("COLUMN_NAME"));
if (i != column_names.end())
{
ColumnId col= std::distance((Recordset::Column_names::const_iterator)column_names.begin(), i);
column_names.push_back(column_names[col]);
column_types.push_back(column_types[col]);
real_column_types.push_back(real_column_types[col]);
_pkey_columns.push_back(col); // copy original value of pk field(s)
}
else
rowid_col_count--;
}
if (rowid_col_count != rs->rowsCount())
{
_readonly = true;
_readonly_reason = "To edit table data, the SELECT statement must include the primary key column(s).";
}
}
else
{
_readonly = true;
_readonly_reason = "The table has no unique row identifier (primary key or a NOT NULL unique index)";
}
return rowid_col_count;
}
catch (sql::SQLException &exc)
{
_readonly = true;
_readonly_reason = base::strfmt("Could not determine a unique row identifier (%s)", exc.what());
}
}
return 0;
}
size_t Recordset_cdbc_storage::determine_pkey_columns_alt(Recordset::Column_names &column_names, Recordset::Column_types &column_types, Recordset::Column_types &real_column_types)
{
// a connection other than the user connection must be used for fetching metadata, otherwise we change the state of the connection
sql::Dbc_connection_handler::Ref conn;
base::RecMutexLock lock(_getAuxConnection(conn, true)); //we can't perform full connection check, hence we use the simple one
{
std::auto_ptr<sql::Statement> stmt(conn->ref->createStatement());
std::string q = base::sqlstring("SHOW INDEX FROM !.!", 0) << _schema_name << _table_name;
try
{
std::auto_ptr<sql::ResultSet> rs(stmt->executeQuery(q));
std::list<std::string> primary_columns;
std::list<std::string> unique_notnull_columns, columns;
bool found_not_null = false;
std::string prev_key;
while (rs->next())
{
std::string column = rs->getString("Column_name");
std::string null = rs->getString("Null");
std::string key = rs->getString("Key_name");
if (key == "PRIMARY")
{
primary_columns.push_back(column);
}
else
{
// at least one of the columns must be NOT NULL in a UNIQUE key
if (prev_key != key)
{
prev_key = key;
if (found_not_null && unique_notnull_columns.empty())
unique_notnull_columns = columns;
found_not_null = false;
columns.clear();
}
columns.push_back(column);
if (null == "")
found_not_null = true;
}
}
if (found_not_null && unique_notnull_columns.empty() && !columns.empty())
unique_notnull_columns = columns;
if (!primary_columns.empty())
columns = primary_columns;
else
columns = unique_notnull_columns;
if (!columns.empty())
{
size_t rowid_col_count= columns.size();
// now check whether the query contains all the columns in the keys
for (std::list<std::string>::const_iterator column = columns.begin(); column != columns.end(); ++column)
{
Recordset::Column_names::const_iterator i = std::find(column_names.begin(), column_names.end(), *column);
if (i != column_names.end())
{
ColumnId col= std::distance((Recordset::Column_names::const_iterator)column_names.begin(), i);
column_names.push_back(column_names[col]);
column_types.push_back(column_types[col]);
real_column_types.push_back(real_column_types[col]);
_pkey_columns.push_back(col); // copy original value of pk field(s)
}
else
rowid_col_count--;
}
if (rowid_col_count != columns.size())
{
_readonly = true;
_readonly_reason = "To edit table data, the SELECT statement must include the primary key column(s).";
}
return rowid_col_count;
}
}
catch (sql::SQLException &exc)
{
_readonly = true;
_readonly_reason = base::strfmt("Could not determine a unique row identifier (%s)", exc.what());
return 0;
}
}
_readonly = true;
_readonly_reason = "The table has no unique row identifier (primary key or a NOT NULL unique index)";
return 0;
}
void Recordset_cdbc_storage::do_unserialize(Recordset *recordset, sqlite::connection *data_swap_db)
{
sql::Dbc_connection_handler::Ref conn;
base::RecMutexLock lock(_getUserConnection(conn, true)); //we can't perform full connection check, hence we use the simple one
Recordset_sql_storage::do_unserialize(recordset, data_swap_db);
std::string sql_query= decorated_sql_query();
Recordset::Column_names &column_names= get_column_names(recordset);
Recordset::Column_types &column_types= get_column_types(recordset);
Recordset::Column_types &real_column_types= get_real_column_types(recordset);
Recordset::Column_flags &column_flags= get_column_flags(recordset);
boost::shared_ptr<sql::Statement> stmt;
boost::shared_ptr<sql::ResultSet> rs;
if (_dbc_resultset)
{
rs= _dbc_resultset;
_dbc_resultset.reset(); // handover memory management to scope shared_ptr because resultset can be read 1 time only
// same about statement
stmt= _dbc_statement;
_dbc_statement.reset();
}
else
{
if (!_reloadable)
throw std::runtime_error("Recordset can't be reloaded, original statement must be reexecuted instead");
stmt.reset(conn->ref->createStatement());
//if (!_schema_name.empty()) //! default schema is to be set for connector
// stmt->execute(strfmt("use `%s`", _schema_name.c_str()));
//stmt->setFetchSize(100); //! setFetchSize is not implemented. param value to be customized.
stmt->execute(sql_query);
rs.reset(stmt->getResultSet());
}
_valid= (NULL != rs.get());
if (!_valid)
return;
sql::ResultSetMetaData *rs_meta(rs->getMetaData());
ColumnId editable_col_count= rs_meta->getColumnCount();
// column types
static std::map<std::string, sqlite::variant_t> known_types;
static std::map<std::string, sqlite::variant_t> known_real_types;
{
struct Known_type_initializer
{
//! these types are mysql specific
//! TODO: int ResultSetMetaData::getColumnType must be used instead
//! TODO: unify value range constraints
Known_type_initializer(GRT *grt)
{
known_types["BIT"]= sqlite::unknown_t();
known_types["ENUM"]= std::string();
known_types["SET"]= std::string();
known_types["DECIMAL"]= std::string();//!ld;
known_types["TINYINT"]= std::string();//!int();
known_types["SMALLINT"]= std::string();//!int();
known_types["INT"]= std::string();//!int();
known_types["MEDIUMINT"]= std::string();//!int();
known_types["BIGINT"]= std::string();//!boost::int64_t();
known_types["FLOAT"]= std::string();//!ld;
known_types["DOUBLE"]= std::string();//!ld;
known_types["NULL"]= sqlite::null_t();
known_types["TIMESTAMP"]= std::string();
known_types["DATE"]= std::string();
known_types["TIME"]= std::string();
known_types["DATETIME"]= std::string();
known_types["YEAR"]= int();
known_types["TINYBLOB"]= sqlite::blob_ref_t();
known_types["BLOB"]= sqlite::blob_ref_t();
known_types["MEDIUMBLOB"]= sqlite::blob_ref_t();
known_types["LONGBLOB"]= sqlite::blob_ref_t();
known_types["TINYTEXT"]= std::string();
known_types["TEXT"]= std::string();
known_types["MEDIUMTEXT"]= std::string();
known_types["LONGTEXT"]= std::string();
known_types["VARCHAR"]= std::string();
known_types["CHAR"]= std::string();
known_types["GEOMETRY"]= sqlite::blob_ref_t();
known_types["UNKNOWN"]= sqlite::unknown_t();
known_real_types= known_types;
{
long double ld;
known_real_types["DECIMAL"]= ld;
known_real_types["TINYINT"]= int();
known_real_types["SMALLINT"]= int();
known_real_types["INT"]= int();
known_real_types["MEDIUMINT"]= int();
known_real_types["BIGINT"]= boost::int64_t();
known_real_types["FLOAT"]= ld;
known_real_types["DOUBLE"]= ld;
known_real_types["VARBINARY"]= sqlite::blob_ref_t();
known_real_types["BINARY"]= sqlite::blob_ref_t();
}
}
};
static Known_type_initializer known_type_initializer(_grtm->get_grt());
// assign these here since they can change
known_types["VARBINARY"]= sqlite::blob_ref_t();
known_types["BINARY"]= sqlite::blob_ref_t();
DictRef options= DictRef::cast_from(_grtm->get_grt()->get("/wb/options/options"));
if (options.is_valid())
{
bool treat_binary_as_text= (options.get_int("DbSqlEditor:MySQL:TreatBinaryAsText", 0) != 0);
if (treat_binary_as_text)
{
known_types["VARBINARY"]= std::string();
known_types["BINARY"]= std::string();
}
}
}
if (_gather_field_info)
{
for (unsigned int i = 0; i < (unsigned int)editable_col_count; ++i)
{
FieldInfo info;
info.catalog = rs_meta->getCatalogName(i+1);
info.schema = rs_meta->getSchemaName(i+1);
info.table = rs_meta->getTableName(i+1);
info.field = rs_meta->getColumnLabel(i+1);
info.type = rs_meta->getColumnTypeName(i+1);
#if defined(__APPLE__) || defined(_WIN32) || defined(MYSQLCPPCONN_VERSION_1_1_4)
info.charset = rs_meta->getColumnCharset(i+1);
#endif
info.display_size = rs_meta->getColumnDisplaySize(i+1);
info.precision = rs_meta->getPrecision(i+1);
info.scale = rs_meta->getScale(i+1);
_field_info.push_back(info);
}
// Turns the flag off to prevent unnecesary
// reprocessing to get the field info.
_gather_field_info = false;
}
column_types.reserve(editable_col_count);
// some column types might be defined in derived class. don't redefine types for those columns.
for (unsigned int n = (unsigned int)column_types.size(); (unsigned int)editable_col_count > n; ++n)
{
std::string type_name= rs_meta->getColumnTypeName(n+1);
type_name = base::toupper(type_name);
std::string::size_type tne= type_name.find(' ');
type_name= type_name.substr(0, tne);
column_types.push_back(known_types[type_name]);
real_column_types.push_back(known_real_types[type_name]);
int flags = 0;
if (!rs_meta->isNumeric(n+1) && (sql::DataType::DECIMAL != rs_meta->getColumnType(n+1)))
flags = Recordset::NeedsQuoteFlag;
column_flags.push_back(flags);
}
// column names
column_names.reserve(editable_col_count);
// some column names might be defined in derived class. don't redefine names for those columns.
for (unsigned int n = (unsigned int)column_names.size(); (unsigned int)editable_col_count > n; ++n)
column_names.push_back(rs_meta->getColumnLabel(n+1));
// determine pkey or unique identifier columns
ColumnId rowid_col_count= 0;
if (!_table_name.empty()) // we need PK info only for editable statements and table_name member is filled only for those
{
// some day, I_S will be fast enough and we can switch to the non-alt version of the method for that server and above
rowid_col_count = determine_pkey_columns_alt(column_names, column_types, real_column_types);
}
// columns values of that must be null to signify that actual value to be fetched on-demand (e.g. when open blob editor)
std::vector<bool> null_value_columns(editable_col_count);
{
bool are_null_columns_possible= recordset->optimized_blob_fetching() && _reloadable && rowid_col_count;
for (ColumnId col= 0; editable_col_count > col; ++col)
null_value_columns[col]= are_null_columns_possible && sqlide::is_var_blob(real_column_types[col]);
}
// data
{
sqlide::Sqlite_transaction_guarder transaction_guarder(data_swap_db, false);
create_data_swap_tables(data_swap_db, column_names, column_types);
FetchVar fetch_var(rs.get());
Var_vector row_values(editable_col_count + rowid_col_count);
std::list<boost::shared_ptr<sqlite::command> > insert_commands= prepare_data_swap_record_add_statement(data_swap_db, column_names);
// XXX this will fetch all records before displaying them, which will result in a huge unnecessary lag in the UI
while (rs->next())
{
for (ColumnId n= 0; editable_col_count > n; ++n)
{
if (rs->isNull((int)n + 1) || null_value_columns[n])
{
row_values[n]= sqlite::null_t();
}
else
{
sqlite::variant_t index= (int)n+1;
row_values[n]= boost::apply_visitor(fetch_var, column_types[n], index);
}
}
for (ColumnId n= 0; rowid_col_count > n; ++n) // copy original value of pk field(s)
row_values[editable_col_count+n]= row_values[_pkey_columns[n]];
add_data_swap_record(insert_commands, row_values);
if (conn->is_stop_query_requested)
throw std::runtime_error(_("Query execution has been stopped, the connection to the DB server was not restarted, any open transaction remains open"));
}
transaction_guarder.commit();
}
// remap rowid columns to duplicated columns
for (ColumnId rowid_col= 0, col= editable_col_count; rowid_col_count > rowid_col; ++col, ++rowid_col)
_pkey_columns[rowid_col]= col;
}
void Recordset_cdbc_storage::do_fetch_blob_value(Recordset *recordset, sqlite::connection *data_swap_db, RowId rowid, ColumnId column, sqlite::variant_t &blob_value)
{
sql::Dbc_connection_handler::Ref conn;
base::RecMutexLock lock(_getUserConnection(conn, true)); //we can't perform full connection check, hence we use the simple one
Recordset::Column_names &column_names= get_column_names(recordset);
Recordset::Column_types &column_types= get_column_types(recordset);
if (column >= column_names.size())
return;
std::string sql_query= decorated_sql_query();
{
std::string pkey_predicate;
get_pkey_predicate_for_data_cache_rowid(recordset, data_swap_db, rowid, pkey_predicate);
if (pkey_predicate.empty())
{
// no pk for recordset - blob fields are fetched along with other fields - hence this is a true NULL value rather than a placeholder
blob_value= sqlite::null_t();
return;
}
sql_query= strfmt("select `%s`, length(`%s`) from (%s) t where %s",
column_names[column].c_str(), column_names[column].c_str(), sql_query.c_str(), pkey_predicate.c_str());
}
if (!_reloadable)
throw std::runtime_error("Recordset can't be reloaded, original statement must be reexecuted instead");
boost::shared_ptr<sql::Statement> stmt(conn->ref->createStatement());
stmt->execute(sql_query);
boost::shared_ptr<sql::ResultSet> rs(stmt->getResultSet());
_valid= (NULL != rs.get());
if (!_valid)
return;
{
FetchVar fetch_var(rs.get());
while (rs->next())
{
sqlite::variant_t val;
if (rs->isNull(1))
{
blob_value= sqlite::null_t();
}
else
{
fetch_var.foreknown_blob_size(rs->getInt(2));
sqlite::variant_t index= 1;
blob_value= boost::apply_visitor(fetch_var, column_types[column], index);
}
}
}
}
class BlobVarToStream : public boost::static_visitor<boost::shared_ptr<std::stringstream> >
{
public:
result_type operator()(const sqlite::blob_ref_t &v)
{
size_t data_length= v->size();
std::string data((const char*)&(*v)[0], data_length);
return result_type(new std::stringstream(data));
}
result_type operator()(const std::string &v) { return result_type(new std::stringstream(v)); }
template<typename V> result_type operator()(const V &t) { return result_type(new std::stringstream()); }
};
void Recordset_cdbc_storage::run_sql_script(const Sql_script &sql_script, bool skip_transaction)
{
sql::Dbc_connection_handler::Ref conn;
base::RecMutexLock lock(_getUserConnection(conn, true)); //we can't perform full connection check, hence we use the simple one
float progress_state= 0.f;
float progress_state_inc= sql_script.statements.empty() ? 1.f : 1.f / sql_script.statements.size();
int err_count= 0;
int processed_statement_count= 0;
std::string msg;
BlobVarToStream blob_var_to_stream;
Sql_script::Statements_bindings::const_iterator sql_bindings= sql_script.statements_bindings.begin();
std::auto_ptr<sql::PreparedStatement> stmt;
BOOST_FOREACH (const std::string &sql, sql_script.statements)
{
try
{
stmt.reset(conn->ref->prepareStatement(sql));
std::list<boost::shared_ptr<std::stringstream> > blob_streams;
if (sql_script.statements_bindings.end() != sql_bindings)
{
int bind_var_index= 1;
BOOST_FOREACH (const sqlite::variant_t &bind_var, *sql_bindings)
{
if (sqlide::is_var_null(bind_var))
{
stmt->setNull(bind_var_index, 0);
}
else
{
boost::shared_ptr<std::stringstream> blob_stream= boost::apply_visitor(blob_var_to_stream, bind_var);
if (binding_blobs())
{
blob_streams.push_back(blob_stream);
stmt->setBlob(bind_var_index, blob_stream.get());
}
}
++bind_var_index;
}
}
stmt->executeUpdate();
}
catch (sql::SQLException &e)
{
++err_count;
msg = strfmt("%i: %s", e.getErrorCode(), e.what());
on_sql_script_run_error(e.getErrorCode(), msg, sql);
}
++processed_statement_count;
progress_state+= progress_state_inc;
on_sql_script_run_progress(progress_state);
++sql_bindings;
}
if (err_count)
{
if (!skip_transaction)
conn->ref->rollback();
msg= strfmt("%i error(s) saving changes to table %s", err_count, full_table_name().c_str());
on_sql_script_run_statistics((processed_statement_count - err_count), err_count);
throw std::runtime_error(msg.c_str());
}
else
{
if (!skip_transaction)
conn->ref->commit();
on_sql_script_run_statistics((processed_statement_count - err_count), err_count);
}
}
std::string Recordset_cdbc_storage::decorated_sql_query()
{
std::string sql_query;
if (!_sql_query.empty())
sql_query= _sql_query;
else
sql_query= strfmt("select * from %s%s", full_table_name().c_str(), _additional_clauses.c_str());
if (_limit_rows)
{
SqlFacade::Ref sql_facade= SqlFacade::instance_for_rdbms(_rdbms);
Sql_specifics::Ref sql_specifics= sql_facade->sqlSpecifics();
sql_query= sql_specifics->limit_select_query(sql_query, &_limit_rows_count, &_limit_rows_offset);
}
return sql_query;
}
|