/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to src/manipulator.cc

  • Committer: edam
  • Date: 2012-01-23 20:00:05 UTC
  • Revision ID: edam@waxworlds.org-20120123200005-038div0hpe78if8e
update TODO

Show diffs side-by-side

added added

removed removed

34
34
        detail::set_index_t t = { index };
35
35
        return t;
36
36
}
37
 
 
38
 
 
39
 
sqlite::detail::blob_t sqlite::blob(
40
 
        const char *value,
41
 
        unsigned int value_length )
42
 
{
43
 
        detail::blob_t t = { value, value_length };
44
 
        return t;
45
 
}
46
 
 
47
 
 
48
 
sqlite::detail::blob_t sqlite::blob(
49
 
        const std::string &value )
50
 
{
51
 
        return blob( value.c_str(), value.length() );
52
 
}