90 lines
4.0 KiB
HTML
90 lines
4.0 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html lang="en-us" xml:lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="security" content="public" />
|
|
<meta name="Robots" content="index,follow" />
|
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
|
<meta name="DC.Type" content="reference" />
|
|
<meta name="DC.Title" content="Example: Use the BLOB data type" />
|
|
<meta name="DC.Relation" scheme="URI" content="rzaikodbclobdatalink.htm" />
|
|
<meta name="copyright" content="(C) Copyright IBM Corporation 1999, 2006" />
|
|
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 1999, 2006" />
|
|
<meta name="DC.Format" content="XHTML" />
|
|
<meta name="DC.Identifier" content="rzaikblobex" />
|
|
<meta name="DC.Language" content="en-us" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
|
|
<link rel="stylesheet" type="text/css" href="./ic.css" />
|
|
<title>Example: Use the BLOB data type</title>
|
|
</head>
|
|
<body id="rzaikblobex"><a name="rzaikblobex"><!-- --></a>
|
|
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
|
|
<h1 class="topictitle1">Example: Use the BLOB data type</h1>
|
|
<div><div class="section"><div class="p">The following is a partial C program that uses the BLOB data type: <pre>BOOL params = TRUE; // TRUE if you want to use parameter markers
|
|
SQLINTEGER char_len = 10, blob_len = 400;
|
|
SQLCHAR szCol1[21], szCol2[400], szRecCol1[21], szRecCol2[400];
|
|
SQLINTEGER cbCol1, cbCol2;
|
|
SQLCHAR stmt[2048];
|
|
|
|
// Create a table with a CHAR field and a BLOB field
|
|
rc = SQLExecDirect(hstmt, "CREATE TABLE TABBLOB(COL1 CHAR(10), COL2 BLOB(400))", SQL_NTS);
|
|
|
|
strcpy(szCol1, "1234567890");
|
|
if (!params) // no parameter markers
|
|
{
|
|
strcpy(szCol2, "414243444546"); // 0x41 = 'A', 0x42 = 'B', 0x43 = 'C', ...
|
|
wsprintf(stmt, "INSERT INTO TABBLOB VALUES('%s', BLOB(x'%s'))", szCol1, szCol2);
|
|
}
|
|
else
|
|
{
|
|
strcpy(szCol2, "ABCDEF"); // 'A' = 0x41, 'B' = 0x42, 'C' = 0x43, ...
|
|
strcpy(stmt, "INSERT INTO TABBLOB VALUES(?,?)");
|
|
}
|
|
|
|
// Prepare the 'Insert' statement
|
|
rc = SQLPrepare(hstmt, stmt, SQL_NTS);
|
|
|
|
// Bind the parameter markers
|
|
if (params) // using parameter markers
|
|
{
|
|
cbCol1 = char_len;
|
|
rc = SQLBindParameter(hstmt, 1, SQL_PARAM_INPUT, SQL_C_CHAR, SQL_CHAR,
|
|
char_len, 0, szCol1, char_len + 1, &cbCol1);
|
|
|
|
cbCol2 = 6;
|
|
rc = SQLBindParameter(hstmt, 2, SQL_PARAM_INPUT, SQL_C_BINARY, SQL_LONGVARBINARY,
|
|
blob_len, 0, szCol2, blob_len, &cbCol2);
|
|
}
|
|
|
|
// Execute the 'Insert' statement to put a row of data into the table
|
|
rc = SQLExecute(hstmt);
|
|
|
|
// Prepare and Execute a 'Select' statement
|
|
rc = SQLExecDirect(hstmt, "SELECT * FROM TABBLOB", SQL_NTS);
|
|
|
|
// Bind the columns
|
|
rc = SQLBindCol(hstmt, 1, SQL_C_CHAR, szRecCol1, char_len + 1, &cbCol1);
|
|
rc = SQLBindCol(hstmt, 2, SQL_C_BINARY, szRecCol2, blob_len, &cbCol2);
|
|
|
|
// Fetch the first row
|
|
rc = SQLFetch(hstmt);
|
|
szRecCol2[cbCol2] = '\0';
|
|
|
|
// At this point szRecCol1 should contain the data "1234567890"
|
|
// szRecCol2 should contain the data 0x414243444546 or "ABCDEF"</pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="rzaikodbclobdatalink.htm" title="Use LOBs with iSeries Access for Windows ODBC to store and access large text documents.">Large objects (LOBs) considerations</a></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |