rawQuery Vs. database.query

后端 未结 2 600
一整个雨季
一整个雨季 2020-12-11 01:47

Are their any advantages in using rawQuery over the Query Builder (or vice versa)?

Does the Query Builder, for example, protect again SQL Injection attacks (While no

2条回答
  •  -上瘾入骨i
    2020-12-11 02:32

    It's definitely preferred to build a query through the methods provided. Not only does it protect you from SQL injections, it also builds the query for you so you can avoid having a whole bunch of string concatenations that will make the query string less readable and more error prone. Performance-wise I don't think it makes much difference.

提交回复
热议问题