侧边栏壁纸
  • 累计撰写 14 篇文章
  • 累计创建 0 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

Android MySQL Database Manipulator

詹迪佳
2024-07-30 / 0 评论 / 0 点赞 / 14 阅读 / 2540 字

Introduction

This is a simple demo for beginners in Java or MySQL database. Using the Manipulator, you can get quick access to your cloud MySQL database or other databases that support MySQL commands. You can insert, query data of the database and input custom commands whenever you want.

Download Resources

GitHub: Download Source Code

Tutorial

1. Setting

  1. You can input the URL of your cloud database in the following format: “jdbc:mysql://URL of your cloud database::port/databaseName”. (As shown in the figure below)

  2. And then input your account and password. Next, check the connection is successful or not.

  3. The filter and table name means the default filter and table name of your sql commands, such as “select from HelloWorld”, where the ‘’ is the filter and “HelloWorld” is the table name. If you fill in, it will be inserted into your sql commands such as when you want to insert data in the “insert” tab.

2. Query

  1. You can input the URL of your cloud database in the following format: “jdbc:mysql://URL of your cloud database::port/databaseName”. (As shown in the figure below)

  2. And then input your account and password. Next, check the connection is successful or not.

  3. The filter and table name means the default filter and table name of your sql commands, such as “select from HelloWorld”, where the ‘’ is the filter and “HelloWorld” is the table name. If you fill in, it will be inserted into your sql commands such as when you want to insert data in the “insert” tab.

3. Insert

  1. You need to click “add” to add column you want to insert into the default table. And then click “confirm” following by another “add” to add record of values inserted to the table.

0

评论区