When you are using a CreateOLEQueryScope to fetch data you want to create, you have to define a valid tablename!
Use an "CreateOLERow" to insert a new datarow into the table.
Define all the data fields you want to insert data by using "EditOLEValue" activities inside the CreateOLERow. You need to specify the column name in the "DisplayName" property and the data type in the "DataType" property. Specify the new value for the cell in the evaluation property "Value".
Define the primary key data structure by placing "EditOLEValue" activities inside the OLEEditRow. You need to specify the column name in the "DisplayName" property and the data type in the "DataType" property. Check the "IsPrimary" checkbox as this column is the key column.
For inserting data you must not define the primary key column. Do not check the "IsPrimary" property!