mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Geom/Ctrl/PlotterCtrl: new methods to check for reversed orientation of coordinate axes
plugin/jpg/jpgupp.cpp: support for EXIM image orientation metadata plugin/sqlite3/Sqlite3upp.cpp: support for BLOB write using SqlRaw Oracle/Oci8.cpp: fixed OracleBlob::Write to survive zero-length write git-svn-id: svn://ultimatepp.org/upp/trunk@4100 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
dd90c9d1f7
commit
a4947790ef
5 changed files with 52 additions and 5 deletions
|
|
@ -84,6 +84,11 @@ void Sqlite3Connection::BindParam(int i, const Value& r) {
|
|||
if (IsNull(r))
|
||||
sqlite3_bind_null(current_stmt,i);
|
||||
else switch (r.GetType()) {
|
||||
case SQLRAW_V: {
|
||||
SqlRaw p = r;
|
||||
sqlite3_bind_blob(current_stmt, i, p, p.GetLength(), SQLITE_TRANSIENT);
|
||||
break;
|
||||
}
|
||||
case STRING_V:
|
||||
case WSTRING_V: {
|
||||
WString p = r;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue