Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Postgres support (Cursors) #98

Open
31 tasks
Tracked by #40
nene opened this issue Dec 2, 2024 · 0 comments
Open
31 tasks
Tracked by #40

Postgres support (Cursors) #98

nene opened this issue Dec 2, 2024 · 0 comments

Comments

@nene
Copy link
Owner

nene commented Dec 2, 2024

  • DECLARE
    • DECLARE name CURSOR FOR query
    • [ BINARY ]
    • [ ASENSITIVE | INSENSITIVE ]
    • [ [ NO ] SCROLL ]
    • [ { WITH | WITHOUT } HOLD ]
  • MOVE
    • MOVE cursor_name
    • [ direction ]
      • NEXT
      • PRIOR
      • FIRST
      • LAST
      • ABSOLUTE count
      • RELATIVE count
      • count
      • ALL
      • FORWARD
      • FORWARD count
      • FORWARD ALL
      • BACKWARD
      • BACKWARD count
      • BACKWARD ALL
    • [ FROM | IN ]
  • FETCH
    • FETCH cursor_name
    • [ direction ]
    • [ FROM | IN ]
  • CLOSE
    • CLOSE name
    • CLOSE ALL
@nene nene mentioned this issue Dec 2, 2024
21 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant