| 943 | } |
| 944 | |
| 945 | int CppSQLite3DB::insertBlob(const CString& szSQL, const unsigned char *data, int dataLength) |
| 946 | { |
| 947 | CppSQLite3Statement statement = compileStatement(szSQL); |
| 948 | |
| 949 | statement.bind(1, data, dataLength); |
| 950 | |
| 951 | return statement.execDML(); |
| 952 | } |
| 953 | |
| 954 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 955 |
no test coverage detected