SQLite DELETE Component with 2 Conditions

I want to
DELETE FROM t_tj WHERE TJ_Tgl = ‘2022-10-15’ AND TJ_NoNota = ‘1501’.

How to put this on SQLite.DELETE component in kodular?

Exactly like this

You might want to provide a screenshot of your relevant blocks including Do it result… note: SQlite is case sensitive…

Taifun

Thank you for your replay

this is my block


2

4
5

When I do DELETE with one condition, just like below, SUCCESS

However I dont know how to DELETE with two condition like this

DELETE FROM t_tj WHERE TJ_Tgl = ‘2022-10-15’ AND TJ_NoNota = ‘1501’.

I dont know sintax to do this

I hope U understand my point, english is not my native language

Try the whereClause TJ_Tgl = ? AND TJ_NoNota = ?
And put both arguments into the whereArgs list

Taifun

Result always -1 when I use below block
7

Below block, A and B dont want to stick in to “and component”
AND component refuse to accept ‘A’ n ‘B’

8

Below Block, result -1

Below Block, result -1

Below Block, result -1

any idea what should i do?

Put exactly that text into the where clause without using the and block

Taifun

1 Like

Thank you so so much for your help @Taifun

I never imagine in string component I can do that in where clause

I have been searching for my problem for 5 days and find nothing.

Thank you so much

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.