o(╥﹏╥)oSad

WeChat cannot downloadSQLite visual management tool (SQLite Expert Pro), but just click on the upper right corner and select open in browser or Safari!
SQLite visual management tool (SQLite Expert Pro)

SQLite visual management tool (SQLite Expert Pro)

  • Size: 39.6M
  • Language: English
  • category: Database class
  • System: Win All

Recommended for you: SQLite database management tool

SQLite visual management tool allows users to perform operations such as creation, editing, copying, and extraction on the SQLite server. SQLite Expert Professional is a visual database management tool that allows users to perform operations such as creating, editing, copying, and extracting on the SQLite server. SQLite Expert supports all SQLite features of the graphical interface. It includes a visual query builder, a SQL editor with syntax highlighting and code auto-completion, powerful table and view design and import and export functions.

Supported platforms: windows 2000, XP, VISTA, 7. 

Main features:

-Visual SQL query builder
-Build complex SQL queries easily.
-Formatted SQL query text layout.
-A powerful means of SQL query parsing and analysis.
- Advanced SQL editor with syntax highlighting and code completion.

Powerful reorganization function:
- Visual editor for table columns, indexes, foreign keys, triggers, unique and check constraints.
- Reorganize tables of any complexity without losing data.
- Any reorganization operations are wrapped in a nested transaction and rolled back if any errors occur while the changes are being applied.

Import and export data:
-Import data from ADO data sources, CSV files, SQL scripts or SQLite.
-Export data to CSV files, SQL scripts, Excel or SQLite.
- Copy tables between SQLite databases using drag and drop operations.
- Export to Excel via data from clipboard.

Data editing:
- Edit data in the grid using powerful in-place editing.
-The image editor currently supports JPEG, PNG, BMP, GIF and ICO image formats.
-Visualize and modify BLOB fields using the integrated hex editor.

Install and use SQLite Expert

Download SQLiteExpert software

Installation is very simple, just keep going to the next step

SQLite visual management tool (SQLite Expert Pro)

SQLite visual management tool (SQLite Expert Pro)

SQLite visual management tool (SQLite Expert Pro)

SQLite visual management tool (SQLite Expert Pro)

After install, the installation is successful

Open the software

SQLite visual management tool (SQLite Expert Pro)

Open sqlite database

SQLite visual management tool (SQLite Expert Pro)

SQLite visual management tool (SQLite Expert Pro)

After confirmation, open the sqlite data.

Now you need to use MMDS to export the sqlite data file in eclipse

SQLite visual management tool (SQLite Expert Pro)

SQLite visual management tool (SQLite Expert Pro)

OK after opening

In data/data/your project name/database file

SQLite visual management tool (SQLite Expert Pro)

After finding the database file, export it to local and then open it with a toolSQLite visual management tool (SQLite Expert Pro)

Create a table using SQLite expert

SQLite visual management tool (SQLite Expert Pro)

Use SQLite expert to create a table and let it generate the required sql statements for us

In the following example, we create a table to store user names and passwords; the database name is "users" and the table name is "user_accounts". There are three columns: row_id INTEGER auto-increment type primary key, usernameTEXT type used to save user names. passwordTEXT type, used to save user passwords;

Create table

In order to create a table, you must first have a database file. Click "File"->""New Database and then select the path of the file. Click OK to create a database file. After creating the database, create the table. Right-click the database file name and select " New Table" as shown below:

SQLite visual management tool (SQLite Expert Pro)

At this time we have entered the "design state", fill in the table name (user_accounts), click "Add", fill in "row_id" in Name, and select Integer for Type, as shown in the figure below:

SQLite visual management tool (SQLite Expert Pro)

Because the row_id column is special and is the primary key of our index, we also need to click "Index", and then you will see the following picture:

SQLite visual management tool (SQLite Expert Pro)

The Available Fields on the left contains the row_id we just created. Click "Add" to add the row_id to the Index Fields on the right. At this time, the above Primary and AutoIncrement will become available. Check Primary and AutoIncrement and click OK;

SQLite visual management tool (SQLite Expert Pro)

Go back to Field and create two other columns, the username type is TEXT, and the password type is also TEXT, but there is no need to create an Index; after completion, click Apply, so that we can use SQLite expert to create a table, click DDL, we can See that SQLite expert has generated the SQL statements required to generate this table for us:

SQLite visual management tool (SQLite Expert Pro)

When you need code to generate a table in Android, just copy this code and that's it.

Add user

Click SQL and execute the following SQL statement to add a user to the table:

INSERT INTO user_accounts(row_id,username,password) VALUES(001,'John','abcdef');

SQLite visual management tool (SQLite Expert Pro)

Click Data and you will find that a user named John has been added to the database. For practice, let's add two more users, David and Sarah

 

INSERT INTO user_accounts(row_id,username,password) VALUES(002,'David','123456');INSERT INTO user_accounts(row_id,username,password) VALUES(003,'Sarah','00000000');

 

Delete user

Execute the following statement to delete user David:

DELETE FROM user_accounts WHERE username = 'David';

Change password

Execute the following statement to change Sarah’s password:

update user_accounts SET password='666666' WHERE username = 'Sarah';

View all user information

You can use the following statement to view the information of all users in the table:

SELECT * FROMM user_accounts;

Generally speaking, the select * statement is only used during testing and is not recommended in official code.

View the contents of a specified column

Execute the following statement to view the usernames and passwords of all users:

SELECT username,password FROM user_accounts;

At this time, I found that the row_id column was not displayed.

Query information on specific conditions

SQL can perform precise searches based on given query conditions. For example, we only need John's password. You can use statements like this

SELECT password FROM user_accounts WHERE username = 'John';

The following flow chart comes from SQLite official documentation

Create Table Statement

SQLite visual management tool (SQLite Expert Pro)

column-def

SQLite visual management tool (SQLite Expert Pro)

type-name

SQLite visual management tool (SQLite Expert Pro)

column-constraint

SQLite visual management tool (SQLite Expert Pro)

table-constraint

SQLite visual management tool (SQLite Expert Pro)

foriegn-key-clause

SQLite visual management tool (SQLite Expert Pro)

Insert Statement

SQLite visual management tool (SQLite Expert Pro)

Delete Statement

SQLite visual management tool (SQLite Expert Pro)

qualified-table-name

SQLite visual management tool (SQLite Expert Pro)

Update Statement

SQLite visual management tool (SQLite Expert Pro)

qualified-table-name

SQLite visual management tool (SQLite Expert Pro)

Select Statement

SQLite visual management tool (SQLite Expert Pro)

select-core

SQLite visual management tool (SQLite Expert Pro)

result-column

SQLite visual management tool (SQLite Expert Pro)

join-source

SQLite visual management tool (SQLite Expert Pro)

single-source

SQLite visual management tool (SQLite Expert Pro)

join-op

SQLite visual management tool (SQLite Expert Pro)

join-constraint

SQLite visual management tool (SQLite Expert Pro)

ordering-term

SQLite visual management tool (SQLite Expert Pro)

compound-operator

SQLite visual management tool (SQLite Expert Pro)

Other features:

-Full Unicode support.
-Supports additional databases.
-Supports encrypted database.
- Scripting support for Lua and Pascal.

Latest features:

- View all features and collations installed for every SQLite extension!
-New in 3.0: Customize the look and feel of the application using skins.
-New in 3.0: Send any content of the grid to the printer or export it to a PDF file.

Version: v5.2.2.223 Special Edition | Update time: 2024-11-01

Similar recommendations

Latest updates

SQLite Visual Management Tool (SQLite Expert Pro) Review

  • 1st floor Huajun netizen 2019-05-30 15:04:58
    The SQLite visual management tool (SQLite Expert Pro) is very useful, thank you! !
  • 2nd floor Huajun netizen 2020-10-27 09:55:45
    The interface design of the SQLite visual management tool (SQLite Expert Pro) is easy to use and has rich functions. I highly recommend it!
  • 3rd floor Huajun netizen 2019-08-10 13:59:56
    The SQLite visual management tool (SQLite Expert Pro) software is very easy to use, the download speed is very fast, and it is very convenient!

Recommended products

Everyonealso likeThese:

+

This application has not passed real-name authentication. You can download it through the mobile assistant.

CancelOK