Writable returns whether the transaction can perform write operations.
()
| 84 | |
| 85 | // Writable returns whether the transaction can perform write operations. |
| 86 | func (tx *Tx) Writable() bool { |
| 87 | return tx.writable |
| 88 | } |
| 89 | |
| 90 | // Cursor creates a cursor associated with the root bucket. |
| 91 | // All items in the cursor will return a nil value because all root bucket keys point to buckets. |
no outgoing calls