C++에서 MySQL에 이미지 넣기

tmvlemaos의 이미지

C++로 MySQL에 이미지를 저장해보려고 하는데요

잘안되서 질문올립니다.

현재 MySQL table은

+-----------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------+--------------+------+-----+---------+-------+
| imageName | varchar(128) | NO | PRI | | |
| length | mediumint(9) | NO | | 0 | |
| image | mediumblob | NO | | | |
+-----------+--------------+------+-----+---------+-------+

이렇게 구성되어있구요.

이미지를 열고 읽은다음에 바로 다른 이름으로 저장하면 제대로 되는데

디비에 넣고난 후에 디비에서 읽어들인후 파일로 생성하면

제대로 되질 않습니다.

개발환경은 Redaht Linux Enterprize Server 3 입니다.

제가 구성한 코드는 아래와 같습니다.

Code :

//이미지를 DB에 넣는 부분

//InsertImage

void ImageDBMGR::InsertImage( string filename )
{

//Get file length
long length = this->GetFileSize( filename );

//File open
int fileOpen = open( const_cast( filename.c_str() ), O_RDONLY );

char* image = 0;

if( fileOpen != -1 )
{
//Create char type array at heep space
image = new char[length];

//Read the file as length byte
read( fileOpen, image, length );
}

//Close the file
close( fileOpen );

//Insert Image at Database
try {

//Open the databasei
Connection con( "FreemanTest", "localhost", "root", "dreams" );

//Declaration Query Variable
Query query = con.query();

//Set Query Statement
query ( filename.c_str() )

query.parse();

query.execute();
}
catch( const BadQuery& er )
{
cerr }

}

//이미지를 DB에서 가져오는 부분

//GetImage
void ImageDBMGR::GetImage( string filename )
{
//Open the database
Connection con( "FreemanTest", "localhost", "root", "dreams" );

//Declaration Query Variable
Query query = con.query();

//Set Query Statement
query ( filename.c_str() )

//Query Excute, and Store the date at Result Variable
Result res = query.store();

int count = res.num_rows();

if( count != 0 )
{
//Store the data at first ow
Row row = res.fetch_row();

Row::size_type i;

string image;
int length = 0;

try {
//Loop for read Result Set
for( i = 0; row = res.at(i); ++i )
{
length = atol( const_cast( row.raw_data(1) ) );

cout

//Open the file
int imageFile = open( const_cast( filename.c_str() ), O_RDWR | O_CREAT | O_TRUNC, length );

if( imageFile != -1 )
{
write( imageFile, const_cast( row.raw_data(0) ), length );
}

close( imageFile );

}
}
catch( const BadQuery& er )
{
cerr }
catch( const EndOfResults& end )
{
}

}

}

뭐가 문제일까요..

cmoh1110의 이미지

query를 주고 받을 때는 binary 모드로 하나요?

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.