Topic by john sheflin
hello,
i'm trying to figure out a way to import into tasks.
i am able to communicate with the table, with this:
$roql_result_set = RNCPHP\ROQL::query( "SELECT T.Name from Task T" );
Note, i used task, singular, not tasks
but the data dictionary says tasks, plural
so when i try this, for example:
$roql_result_set = RNCPHP\ROQL::query( "insert into Task (assgn_acct_id,name) values (35,'test task name inser')" );
i get:
Error Generated ::0::Failed: table Task has no column named assgn_acct_id
the data dictionary says Column Information - tasks.assgn_acct_id
so when i try this:
$roql_result_set = RNCPHP\ROQL::query( "insert into Tasks (assgn_acct_id,name) values (35,'test task name inser')" );
i get:
Error Generated ::0::Failed: no such table: Tasks
what am i missing?
thanks