~brianaker/libdrizzle/windows-support-via-mingw

« back to all changes in this revision

Viewing changes to docs/api/structs.rst

  • Committer: Continuous Integration
  • Date: 2013-01-05 11:52:21 UTC
  • mfrom: (79.1.5 5.1-api-fixes)
  • Revision ID: ci@drizzle.org-20130105115221-qxd0g29jljekx7q9
Merge lp:~linuxjedi/libdrizzle/5.1-api-fixes Build: jenkins-Libdrizzle-33

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
.. c:type:: drizzle_datetime_st
21
21
 
22
 
   The struct for passing a date/time to/from the prepared statement API
23
 
 
24
 
   .. c:member:: uint16_t year
25
 
 
26
 
      The year part of the date
27
 
 
28
 
   .. c:member:: uint8_t month
29
 
 
30
 
      The month part of the date
31
 
 
32
 
   .. c:member:: uint32_t day
33
 
 
34
 
      The day part of the date
35
 
 
36
 
   .. c:member:: uint16_t hour
37
 
 
38
 
      The hour part of the time
39
 
 
40
 
   .. c:member:: uint8_t minute
41
 
 
42
 
      The minute part of the time
43
 
 
44
 
   .. c:member:: uint8_t second
45
 
 
46
 
      The second part of the time
47
 
 
48
 
   .. c:member:: uint32_t microsecond
49
 
 
50
 
      The microsecond part of the time
51
 
 
52
 
   .. c:member:: bool negative
53
 
 
54
 
      Is the time negative
55
 
 
56
 
 
 
22
   The internal struct for passing a date/time to/from the prepared statement API
57
23
Binlog
58
24
------
59
25