-
I'm missing something. I'm able to connect to my PS and pull basic table data. I'm now trying to pull data just on one student. However, no matter what I do - it always returns ALL students. students_table.query(student_number=1234) returns all students (active and inactive). param = {'student_number' : '1234' } How should I be doing it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey! good question--the I think I changed it a while back because the primary key turned out to not necessarily be |
Beta Was this translation helpful? Give feedback.
Hey! good question--the
README
was wrong. The correct parameter to pass ispk
, e.g.students_table.query(pk=1234)
.I think I changed it a while back because the primary key turned out to not necessarily be
dcid
for all tables.