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

Support for container CRUD operations, tested. #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

freeman-23
Copy link

  • IntTest.cpp would not compile on windows without the #define NOMINMAX
  • Usage for the Container CRUD operations is as follows.
    In the query where the expansion is needed, add %array%. This will the variables in the array like this ($1), ($2)...; the parenthesis are part of postgres syntax.
    Now if the object in the array is complex and requires further expansion, then this syntax is used: %array :member1, :member2%. This will be expanded like this ($1,$2), ($3,$4)... where $1 and $2 point to array[i].member1 and array[i].member2 respectively.
    For sample usage see the ContainerTest.cpp

- IntTest.cpp would not compile on windows without the #define NOMINMAX
- Usage for the Container CRUD operations is as follows.
 In the query where the expansion is needed, add %array%. This will the variables in the array like this ($1), ($2)...; the parenthesis are part of postgres syntax.
Now if the object in the array is complex and requires further expansion, then this syntax is used: %array :member1, :member2%. This will be expanded like this ($1,$2), ($3,$4)... where $1 and $2 point to array[i].member1  and array[i].member2 respectively.
For sample usage see the ContainerTest.cpp
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

Successfully merging this pull request may close these issues.

1 participant