android数据库通过SQLiteDatabase

发布于 2024-11-02 17:42:24 字数 708 浏览 2 评论 0原文

我正在尝试使用 android.sqlite 来学习 SQLite 的 SQL 数据库内容。我看过几个查询的例子......

我有一个关于 android 中的 sqlite 查询的两部分问题。

第 1 部分

假设我想删除某些内容。我使用以下查询。

db.delete(MY_DB_TABLE, "CustomerName = ?", new String[] { customerName });

如果客户名称中包含不良字符会发生什么情况。

例如。如果我使用以下查询

db.execSQL("delete from " + MY_DB_TABLE + 
           " where customername = '" + customerName + "';");

并在此示例中说我的客户的名字是“Arby's”。

该查询会崩溃,因为 ' 是一个特殊字符,并且查询的格式不正确。

第 2 部分

这种格式是否允许我指定任意数量的参数。

例子:

db.delete(MYTABLE, "val1 = ? and val2 != ?", new String[] { "test", "test2" } );

I am trying to learn the SQL Database stuff for SQLite using the android. I have seen a couple examples of the Queries....

I have a two part question about sqlite queries in android.

Part 1

Say I want to delete something. and I use the following Query.

db.delete(MY_DB_TABLE, "CustomerName = ?", new String[] { customerName });

what would happen if the Customer name had a bad character in it.

For example. If I use the following Query

db.execSQL("delete from " + MY_DB_TABLE + 
           " where customername = '" + customerName + "';");

and say for this example the name of my customer was "Arby's".

That query would blow up because the ' is a special character and the query would not be formatted correctly.

Part 2

does this format allow me to specify as many paramaters as I want.

Example:

db.delete(MYTABLE, "val1 = ? and val2 != ?", new String[] { "test", "test2" } );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆依然 2024-11-09 17:42:24

请参阅我的帖子:

将列表存储到数据库并一起检索它们:Android

并简短回答您的问题,

每个 '?'意味着需要一个参数,因此对于每个“?”除非您想要例外,否则您需要传入确切数量的参数:)!

Please refer to my post here:

Storing Lists to A Database, and Retrieving Them All Together : Android

and short answer to your question, yes.

Each '?' means that an argument will be expected, so for each '?' you WILL have an exact number of arguments to pass in unless you want an exception :) !

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文