Hajime Nakagami
Hajime Nakagami
I don't know how to fix it. Please pull request if you know how to fix it.
Fixed by #148 ? @ilaer
Great work! I don't know much about the service API, but I think the code is good. Test code is also good. It would be even better if you could...
I don't have an environment where Firebird 2.1 works, so I can't try it. Maybe Firebird 2.1 does not work. If the database with a character set other than utf-8,...
thanks, `\` is escape char, and `/` can also be used as a path separator in windows. Probably, the connection string should be as follows ``` SYSDBA:masterkey@localhost:f:\\monkey.fdb?charset=utf8 ``` or ```...
Oh, sorry. Try to follow the pattern of connection strings found at https://github.com/nakagami/firebirdsql/blob/master/utils_test.go#L41-L49 for example ``` SYSDBA:masterkey@localhost/f:\\monkey.fdb?charset=utf8 ``` or ``` SYSDBA:masterkey@localhost/f:/monkey.fdb?charset=utf8 ```
thanks I didn't know how it works in windows, so I learned a lot.
Sorry,this driver uses OP_COMMAND from MongoDB 3.x. https://www.mongodb.com/docs/v3.2/reference/mongodb-wire-protocol/ Because of OP_COMMAND has been removed since MongoDB 4.x, It will not connect to newer versions of MongoDB from Atlas.
``` missing Location in call to Date ``` I have searched for this keyword and it looks like the zoneinfo database is missing. I don't know how to fix it...
CHAR is trimmed VARCHAR is not trimmed These behaviors are as expected.