Execution Modes

NeoSQL can be used in three modes: Offline, Online (Web), and Online (Desktop). Choose the mode that fits your environment.

Mode Overview

Offline

Use on desktop without internet. Ideal for air-gapped environments. Authenticate with a license key, data is stored locally in the .neosql/ folder.

Online (Web)

Use directly in your browser. Cloud sync enables team collaboration after OAuth login. Only public DBs can be connected.

Online (Desktop)

Desktop app + cloud sync. Connect to internal network DBs and collaborate with your team.

Feature Comparison

Compare available features across modes at a glance.

FeatureOfflineOnline (Web)Online (Desktop)
Core Features
ERD Design / EditYesYesYes
SQL EditorYesYesYes
Code GenerationYesYesYes
Forward / Reverse EngineeringYesYesYes
DB Connection
Public DB ConnectionYesYesYes
Internal / Local DB ConnectionYesNoYes
Collaboration & Cloud
Team Collaboration (Real-time Sync)NoYesYes
Project Sharing / InviteNoYesYes
Cloud BackupNoYesYes
Additional Features
AI FeaturesNoYesYes
Template Store (Download/Upload)NoYesYes
Tip

Use the desktop app if you need to connect to internal network DBs or firewall-restricted databases.

Note: Projects created in offline mode cannot be converted to online mode later. Choose the appropriate mode from the start.

Start Offline Mode

Start NeoSQL in offline mode from the desktop app.

1

Launch App

Launch the NeoSQL desktop app.

2

Select Offline Mode

Click the "Start in Offline Mode" link at the bottom of the login screen.

3

Enter License Key

Enter your issued license key.

4

Configure License Parameters

Click the "Add" button to auto-generate default parameters. Enter values according to your license.

ParameterDescriptionExample
BASE_PACKAGEBase package name for code generation (multiple entries allowed)com.example.app
EXPIRED_DTLicense expiration date2026-12-31 23:59:59
LOGIN_IDOffline user identification IDuser@company.com
Tip

Check "Remember" to save the license key and parameters locally for auto-fill on next launch.

5

Authentication Complete

Click "Authenticate". Once the license is validated, you'll navigate to the project selection screen.

Note: When the license expires, the session ends automatically. Re-authenticate with a renewed license key.

Start Online Mode

Online mode uses OAuth social login for authentication. Available in both web browser and desktop app.

1

Launch App

Access the NeoSQL web app or launch the desktop app.

2

Social Login

Log in with Google, GitHub, or other social accounts on the login screen. On desktop, authentication happens in the browser and auto-connects to the app.

3

Select Project

After authentication, you'll be navigated to the dashboard. Your project list is displayed, and you can create a new project or select an existing one.

Offline Project Management

In offline mode, projects are managed on the local file system.

Create New Project

1

Click the "New Database Project" button on the project management screen.

2

Click the "Search..." button in the Location field to select a project directory.

3

Set the project name and DBMS, then click "Save". A .neosql/ folder will be auto-created in the selected directory.

Import Existing Project

1

Click the "Import Project" button on the project management screen. (Only shown in offline mode)

2

Select a directory containing an existing .neosql/ folder. If project-config.json is detected, the project settings will be loaded automatically.

Tip

Commit the .neosql/ directory to Git to share project settings (ERD, table definitions, connection info) across team members. Each member can clone the repository and use "Import Project" to work in the same environment.

Data Storage

Offline Mode

All data is stored as JSON files in the .neosql/ folder within the project directory.

{project-root}/.neosql/
├── project-config.json                        # Project settings (name, DBMS, template pack, etc.)
├── connections/                               # DB connection info
│   └── {connectionId}_{connectionName}/       # Per-connection directory
│       ├── connection.json                    # Connection settings (host, port, driver, etc.)
│       └── {schemaName}/                      # Per-schema directory
│           ├── {tableName}.json               # Table definition (columns, indexes, FKs, etc.)
│           └── {tableName}_entity.json        # Java Entity mapping info
└── erd/                                       # ERD diagrams
    └── {erdId}.json                           # ERD definition (nodes, edges, layout, etc.)

Sensitive credentials (DB passwords, SSH keys, etc.) are not stored in .neosql/ but encrypted in the OS secure storage. This means committing .neosql/ to Git is safe — passwords are not included, and credentials are stored individually on each team member's PC.

Online Mode

Project data is automatically synchronized to the cloud. Sync starts automatically when a project is opened — no manual save needed.

Note: Even if the network is temporarily disconnected, work continues with local data. Sync resumes automatically when the network is restored.

Team Invite & Management (Online Only)

Invite team members and manage roles in online mode.

Invite Team Members

1

Open Share Settings

Click the share button in the project editor toolbar to open project share settings.

2

Enter Email

Enter the email of the team member to invite. Separate multiple emails with commas (,).

3

Select Role & Send Invite

Select a role and send the invitation. An email will be sent to the invited user.

4

Accept Invitation

When the team member clicks the invite link in the email, they join the project automatically after login.

Roles & Permissions

Four roles can be assigned to project members.

RoleInvite MembersChange RoleRemove MemberTransfer Ownership
OwnerManager, DBAAll membersAll membersYes
ManagerManager, DBADBA, MemberDBA, MemberNo
DBANoNoNoNo
MemberNoNoNoNo

Invitation Status

StatusDescription
PENDINGInvitation sent but not yet accepted
ACCEPTEDInvitation accepted, member joined the project
EXPIREDInvitation has expired
CANCELLEDInvitation cancelled by the Owner

Manage Members

Manage current project members in the Members tab of share settings.

  • View each member's role and last access time in the member list.
  • Owner or Manager can change member roles or remove them from the project.
  • Owner can transfer ownership to another member.
  • Non-owner members can leave the project on their own.
Tip

Owner or Manager can configure project visibility (Public/Members Only) and copy permissions in the Settings tab.