🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
SQLite

SQLiteはリレーショナルデータベース管理システムの1つで、サーバーではなくライブラリとして使用されている。

Android

Androidは、Google社が開発したスマートフォンやタブレットなど携帯端末向けのプラットフォームです。 カーネル・ミドルウェア・ユーザーインターフェイス・ウェブブラウザ・電話帳などのアプリケーションやソフトウェアをひとつにまとめて構成。 カーネル・ライブラリ・ランタイムはほとんどがC言語/C++、アプリケーションなどはJavaSEのサブセットとAndroid環境で書かれています。

データベース

データベースとは、データの集合体を指します。また、そのデータの集合体の共用を可能にするシステムの意味を含めます

Android Studio

Android Studioは、 Google社によって開発された、 Androidのネイティブアプリケーション開発に特化した統合開発ツールです。

Kotlin

Kotlinは、ジェットブレインズ社のアンドリー・ブレスラフ、ドミトリー・ジェメロフが開発した、 静的型付けのオブジェクト指向プログラミング言語です。

Q&A

解決済

1回答

720閲覧

KotlinにおけるSQLiteの記述に関する質問

kfc

総合スコア0

SQLite

SQLiteはリレーショナルデータベース管理システムの1つで、サーバーではなくライブラリとして使用されている。

Android

Androidは、Google社が開発したスマートフォンやタブレットなど携帯端末向けのプラットフォームです。 カーネル・ミドルウェア・ユーザーインターフェイス・ウェブブラウザ・電話帳などのアプリケーションやソフトウェアをひとつにまとめて構成。 カーネル・ライブラリ・ランタイムはほとんどがC言語/C++、アプリケーションなどはJavaSEのサブセットとAndroid環境で書かれています。

データベース

データベースとは、データの集合体を指します。また、そのデータの集合体の共用を可能にするシステムの意味を含めます

Android Studio

Android Studioは、 Google社によって開発された、 Androidのネイティブアプリケーション開発に特化した統合開発ツールです。

Kotlin

Kotlinは、ジェットブレインズ社のアンドリー・ブレスラフ、ドミトリー・ジェメロフが開発した、 静的型付けのオブジェクト指向プログラミング言語です。

0グッド

0クリップ

投稿2021/03/15 07:48

前提・実現したいこと

AndroidStudioを使用しています。言語はKotlinです。

問題文、答えの二つをEditTextに入力し、「作成する」Buttonを押すことでそのデータをデータベースに格納するという処理をするためにSQLiteを使用しています。ですが、問題文、答えの両方を記述し、「作成する」Buttonを押すとホーム画面に戻ってしまいます。

「作成する」Buttonを押すと「問題が作成されました」というToastが表示され、データが格納されるようにしたいです。

参考書籍 Androidアプリ開発の教科書 なんちゃって開発者にならないための実践ハンズオン 第10章 データベースアクセス
https://wings.msn.to/index.php/-/A-03/978-4-7981-6044-3/

発生している問題・エラーメッセージ

CreateActivity このActivityにおけるButtonの処理が上手くいきません。

class CreateActivity : AppCompatActivity() { private val _questionId = 0 private val _helper = DatabaseHelper(this@CreateActivity) override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_create) val createcreateBt = findViewById<Button>(R.id.create_create_bt) supportActionBar?.setDisplayHomeAsUpEnabled(true) } override fun onOptionsItemSelected(item: MenuItem): Boolean { if (item.itemId == android.R.id.home) { finish() } return super.onOptionsItemSelected(item) } override fun onDestroy() { _helper.close() super.onDestroy() } fun onSaveButtonClick(view: View) { val createmondaibun = findViewById<EditText>(R.id.create_mondaibun_edit) val createkotae = findViewById<EditText>(R.id.create_kotae_edit) if (TextUtils.isEmpty(createmondaibun.text.toString()) && TextUtils.isEmpty(createkotae.text.toString())) { Toast.makeText(applicationContext, "問題文と答えが空欄です", Toast.LENGTH_LONG).show() } else if (TextUtils.isEmpty(createmondaibun.text.toString())) { Toast.makeText(applicationContext, "問題文が空欄です", Toast.LENGTH_LONG).show() } else if (TextUtils.isEmpty(createkotae.text.toString())) { Toast.makeText(applicationContext, "答えが空欄です", Toast.LENGTH_LONG).show() } else { val mondaibunnote = createmondaibun.text.toString() val kotaenote = createkotae.text.toString() val db = _helper.writableDatabase val sqlInsert = "INSERT INTO mondai (_id, mondaibunnote, kotaenote) VALUES (?,?,?)" val stmt = db.compileStatement(sqlInsert) stmt.bindLong(1, _questionId.toLong()) stmt.bindString(2, mondaibunnote) stmt.bindString(3, kotaenote) stmt.executeInsert() Toast.makeText(applicationContext, "問題を作成しました", Toast.LENGTH_LONG).show() _questionId + 1 createmondaibun.setText("") createkotae.setText("") } } }

DatabaseHelper

class DatabaseHelper (context: Context): SQLiteOpenHelper(context, DATABASE_NAME,null, DATABASE_VERSION) { companion object { private const val DATABASE_NAME = "mondai.db" private const val DATABASE_VERSION = 1 } override fun onCreate(db: SQLiteDatabase) { val sb = StringBuilder() sb.append("CREATE TABLE mondai(") sb.append("_id INTEGER PRIMARY KEY,") sb.append("mondaibunnote TEXT") sb.append("kotaenote TEXT") sb.append(");") val sql = sb.toString() db.execSQL(sql) } override fun onUpgrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) {} }

MainActivity 「作成する」Buttonを押すとこの画面に戻ってしまいます。

class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val createBt = findViewById<Button>(R.id.create_bt) createBt.setOnClickListener { val intent = Intent(applicationContext, CreateActivity::class.java) startActivity(intent) } } }

activity_create 画面構成です。こちらでの処理に問題は無いと思いますが、念のため。

<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/scrollView" android:layout_width="match_parent" android:layout_height="match_parent" android:isScrollContainer="false" > <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" android:layout_height="wrap_content" tools:context=".MainActivity"> <Button android:id="@+id/create_create_bt" android:layout_width="0dp" android:layout_height="wrap_content" android:text="@string/sakuseisuru" android:onClick="onSaveButtonClick" app:backgroundTint="@android:color/holo_orange_dark" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/create_mondaibun_text" android:layout_width="162dp" android:layout_height="30dp" android:text="@string/mondai" android:textSize="25sp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/create_create_bt" /> <EditText android:id="@+id/create_mondaibun_edit" android:layout_width="match_parent" android:layout_height="100dp" android:inputType="textMultiLine" app:layout_constraintTop_toBottomOf="@+id/create_mondaibun_text" tools:ignore="MissingConstraints" tools:layout_editor_absoluteX="0dp" /> <TextView android:id="@+id/create_kotae_text" android:layout_width="162dp" android:layout_height="30dp" android:text="@string/kotae" android:textSize="25sp" app:layout_constraintTop_toBottomOf="@+id/create_mondaibun_edit" tools:ignore="MissingConstraints" tools:layout_editor_absoluteX="0dp" /> <EditText android:id="@+id/create_kotae_edit" android:layout_width="match_parent" android:layout_height="100dp" android:inputType="textMultiLine" app:layout_constraintTop_toBottomOf="@+id/create_kotae_text" tools:layout_editor_absoluteX="162dp" /> </androidx.constraintlayout.widget.ConstraintLayout> </ScrollView>

activity_main ホーム画面の構成です。こちらも問題は無いと思いますが念のため。

<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <Button android:id="@+id/study_bt" android:layout_width="236dp" android:layout_height="80dp" android:layout_gravity="center_horizontal" android:text="@string/study" android:textSize="25dp" app:backgroundTint="@android:color/holo_orange_dark" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" tools:ignore="MissingConstraints,OnClick" /> <Button android:id="@+id/create_bt" android:layout_width="236dp" android:layout_height="80dp" android:layout_gravity="center_horizontal" android:layout_marginTop="30dp" android:text="@string/create" android:textSize="25dp" app:backgroundTint="@android:color/holo_orange_dark" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.502" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/study_bt" /> </androidx.constraintlayout.widget.ConstraintLayout>

試したこと

・アプリのアンインストール
・_questionIdに関する処理の削除、数値の変更

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

kfc

2021/03/15 23:59

E/eglCodecCommon: GoldfishAddressSpaceHostMemoryAllocator: ioctl_ping failed for device_type=5, ret=-1 Logcatではこのようなメッセージが表示されました。 TEXTの後ろに「,」を入力するとToastが表示され、望んでいた動きになりました。 調べ方が悪かったのか、インターネットで調べても詳しいことは書かれていなかったのですが、データとデータの間には「,」を記述するという認識でよろしいでしょうか。
hoshi-takanori

2021/03/16 00:14

sb の中身は CREATE TABLE mondai(_id INTEGER PRIMARY KEY,mondaibunnote TEXT,kotaenote TEXT); という SQL 文になりますが、TEXT と kotaenote の間に , がないと SQL として文法エラーになります。 (逆に、最後の kotaenote TEXT の後ろに , をつけるとそれも文法エラー。) Android 開発の記事や書籍には SQL はそんなに詳しく書かれてないと思うので、詳しく知るにはデータベースの概念や SQL の文法を学ぶ必要があります。なお、SQLite3 そのものは Mac や Windows でも動かせますよ。 http://dbonline.s25.xrea.com/sqlite/index.html
kfc

2021/03/16 01:11

了解しました。 参考にします。ありがとうございました。
guest

回答1

0

自己解決

DatabaseHelper
sb.append("mondaibunnote TEXT")
にて、「TEXT,」と記述しなければならないところを、そのようにしていないことが原因で発生していたようです。

投稿2021/03/16 01:15

kfc

総合スコア0

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問