Posts by Hugo L.F. • 47 points
5 posts
-
0
votes2
answers1015
viewsQ: Error opening a postgres 12 database (via postbird or something like) -> column "relhasoids" does not exist
I went to create a new postgres bank via Docker using image: 'postgres:alpine' and with it he took the latest version (12.0). When opening the bank with Postbird (which has this bug) and trying to…
postgresqlasked Hugo L.F. 47 -
1
votes2
answers1015
viewsA: Error opening a postgres 12 database (via postbird or something like) -> column "relhasoids" does not exist
While searching a little on the internet, I realized that version 12 had some modifications that caused this, such as the removal of this field ai of tables from the system (or something like).…
postgresqlanswered Hugo L.F. 47 -
0
votes1
answer770
viewsA: Error 3706 Microsoft Visual Basic
It’s probably some problem with your Provider... Give us more (much more) information about the code whenever you’re going to post something in the stack to help us help you. Search which the…
-
1
votes1
answer612
viewsA: Problems with sql in access, incompatible data types
I broke my head a little bit and I was able to figure out the date format used by access in the case of this bank, and it was like this: SELECT * FROM tblTRAZA WHERE (tblTRAZA.FECMOV BETWEEN…
-
1
votes1
answer612
viewsQ: Problems with sql in access, incompatible data types
Image of the test/error: I only intend to search the data between a date and another, using: SELECT * FROM tblTRAZA WHERE FECMOV >= '2013-01-03' AND FECMOV <= '2013-01-09'; But I’ve tried…