Internal structure representing dynamic strings. More...
Data Fields | |
| int | len |
| Current length. More... | |
| int | max |
| Maximum length of buffer. More... | |
| int | oom |
| True when out of memory. More... | |
| char | buffer [1] |
| String buffer. More... | |
Internal structure representing dynamic strings.
Definition at line 272 of file sqlite3odbc.c.
| char dstr::buffer[1] |
String buffer.
Definition at line 276 of file sqlite3odbc.c.
Referenced by dsappend(), dsappendq(), and dsval().
| int dstr::len |
Current length.
Definition at line 273 of file sqlite3odbc.c.
Referenced by dsappend(), and dsappendq().
| int dstr::max |
Maximum length of buffer.
Definition at line 274 of file sqlite3odbc.c.
Referenced by dsappend(), and dsappendq().
| int dstr::oom |
True when out of memory.
Definition at line 275 of file sqlite3odbc.c.
Referenced by dsappend(), dsappendq(), and dserr().