Skip to content

Commit 5c3384f

Browse files
committed
More docs.
1 parent 86188fb commit 5c3384f

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

Provider/docs/decfloat.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# DECFLOAT datatype
2+
3+
`DECFLOAT(16)` and `DECFLOAT(34)` from Firebird 4 is handled by `FbDecFloat` type. `FbDecFloat` can be used as parameter value for `FbParameter`.
4+
5+
### Examples
6+
7+
Examples can be found in `FbDecFloat16SupportTests` and `FbDecFloat34SupportTests`.

Provider/docs/int128.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# INT128 datatype
2+
3+
`INT128` from Firebird 4 is handled by regular .NET `BigInteger` type. `BigInteger` can be used as parameter value for `FbParameter`.
4+
5+
### Examples
6+
7+
Examples can be found in `FbInt128SupportTests`.

Provider/docs/time-zones.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Time zones
22

3-
Time zones from Firebird 4 are handled by `FbZonedDateTime` and `FbZonedTime` types respectively. Given the lack of proper support for time zones in .NET (especially cross platform), these types provide the building blocks for developer to work with time zones using some library (i.e. _NodaTime_). Both `FbZonedDateTime` and `FbZonedTime` are expected as parameter values for `FbParameter`.
3+
Time zones from Firebird 4 are handled by `FbZonedDateTime` and `FbZonedTime` types respectively. Given the lack of proper support for time zones in .NET (especially cross platform), these types provide the building blocks for developer to work with time zones using some library (i.e. _NodaTime_). Both `FbZonedDateTime` and `FbZonedTime` can be used as parameter value for `FbParameter`.
44

55
### Examples
66

0 commit comments

Comments
 (0)