Mercurial > hg > orthanc
comparison OrthancServer/DatabaseWrapper.cpp @ 740:4439091f50d3
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 19 Mar 2014 10:30:54 +0100 |
parents | 696dbb4fd390 |
children | 913179bc7cc5 |
comparison
equal
deleted
inserted
replaced
739:696dbb4fd390 | 740:4439091f50d3 |
---|---|
499 } | 499 } |
500 else | 500 else |
501 { | 501 { |
502 attachment = FileInfo(s.ColumnString(0), | 502 attachment = FileInfo(s.ColumnString(0), |
503 contentType, | 503 contentType, |
504 s.ColumnInt(1), | 504 s.ColumnInt64(1), |
505 s.ColumnString(4), | 505 s.ColumnString(4), |
506 static_cast<CompressionType>(s.ColumnInt(2)), | 506 static_cast<CompressionType>(s.ColumnInt(2)), |
507 s.ColumnInt(3), | 507 s.ColumnInt64(3), |
508 s.ColumnString(5)); | 508 s.ColumnString(5)); |
509 return true; | 509 return true; |
510 } | 510 } |
511 } | 511 } |
512 | 512 |