SQLite

4,4 (118)
Eine Bewertung schreiben
Open-Source-Datenbankengine zum Speichern und Ändern von Daten

Gesamtbewertung

4,4 /5
(118)
Preis-Leistungs-Verhältnis
4,5/5
Funktionen
4,1/5
Bedienkomfort
4,4/5
Kundenbetreuung
3,6/5

92%
haben diese Anwendung empfohlen
Sortieren nach

118 Bewertungen

Carlos Hugo Martin
Carlos Hugo Martin
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Täglich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Weiterempfehlungsquote 10.0 /10

Experience with SQLite

Bewertet am 23.5.2021

Describe your general experience with SQLite
It is very useful for me to be able to store informatio...

Describe your general experience with SQLite
It is very useful for me to be able to store information and consume it from different sources without having to implement specific software to do so. Its portability capacity has allowed us to distribute work effectively.

Vorteile

The few resources you need and its portability. This allows us to use the stored data from any medium.

Nachteile

That there is no native way to make it multi-user. That there is no native way to merge files from the same database, when they have been modified by different users and platforms.

Stephen
Stephen
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Täglich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 10.0 /10

Perfect database tool for embedded software

Bewertet am 22.3.2019

I work a lot with SQLite as it is the primary medium of local storage in Android devices (and by...

I work a lot with SQLite as it is the primary medium of local storage in Android devices (and by extension, Android applications) which I work with on a daily basis, and SQLite is just perfect for the purpose it serves on these devices. It's lightweight so you don't have to worry most times about how much of the user's storage space your database is going to take up.

There's not much difference between the standard SQL commands and those used in SQLite, and many have reported that SQLite is a good starting and training resource for SQL in general.

Vorteile

Doesn't need a separate server.
Lightweight and portable.
Integrates most of the commands, functions and syntax of other SQL software.
Optimized for use on devices that need to store data locally.
Large user base and community (support).

Nachteile

All operations are locked to a single process, so it's not suitable for large scale database operations (which is not what you should be doing locally on a device anyway).

Wechuli
Wechuli
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: 1.001–5.000 Mitarbeiter
  • Wöchentlich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 6.0 /10

Good but Limited Use

Bewertet am 14.3.2020

I use it to quickly test applications that need some form of data storage without needing to...

I use it to quickly test applications that need some form of data storage without needing to install database software.

Vorteile

- Very lightweight database products that you can quickly set up to without needing to install complicated tooling so can be used in mobile forms or embedded devices.

Nachteile

- Does not support the full features of SQL
- SQLite does not have support for multi-client concurrency access and can't be used in applications that need this.
- Validation of data to input fields is limited

Manuel Eduardo
Manuel Eduardo
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: Selbstständig
  • Wöchentlich für Mehr als 1 Jahr genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 10.0 /10

A complete and productive database manager

Bewertet am 17.6.2022

As a student, I have used SQLite in several projects, in which my experience has been good. Thanks...

As a student, I have used SQLite in several projects, in which my experience has been good. Thanks to its interface, understanding all its specific functions was not so difficult for me and at the same time working with its tools is an effective and fast process.

Vorteile

Access to databases created in SQLite is fast and easy, because it works as its own independent server. Its connection and management with computer and mobile applications is one of the best, its interface is quite simple and easy to use for the user.

Nachteile

It seems to me the most complete program in its field of work, so I don't see any cons about this program.

Anderson
Anderson
Gesamtbewertung
  • Branche: Informationstechnologie & -dienste
  • Unternehmensgröße: 201–500 Mitarbeiter
  • Täglich für 6-12 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 7.0 /10

Easy to become a problem

Bewertet am 8.11.2018

On a Windows Forms app we used to query services thousand times for data that does not change so...

On a Windows Forms app we used to query services thousand times for data that does not change so frequently. We also had to store some business information (imagine as storing a wizard progress) and that used to be handled using TXT files (and it was a mess). We changed to SQLite and it worked almost like a charm but as the app grew and we decided to create an architecture similar to Google Chrome (multiple processes) it became a major problem for all of them to both read and write at it (we had to create a proxy app to write).

Vorteile

Integrates nicely with .NET (specially Windows Forms) applications, it's really easy to use (specially if you're already familiar with SQL Server) and deployment is really easy (copy/paste required files).

Nachteile

It's locking architecture enables only a single process to write at a time so building a more complex application may cause hard-to-solve problems.

Ramindu
Ramindu
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: 10.000+ Mitarbeiter
  • Wöchentlich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 8.0 /10

The best solution for small, pre-packaged databases

Bewertet am 26.11.2019

We included SQLite alongside web and mobile applications where a small database was needed with...

We included SQLite alongside web and mobile applications where a small database was needed with minimum latency. Most commonly, this use case involved storing dynamic configuration values and user preferences.

Vorteile

SQLite is a great database solution when you have a small database that you need to package alongside an application, for example a database that stores user preferences. As it is local to the application, it bypasses issues you would have with other, larger database servers in terms of network latency. Its conformity (in the large part) to MySQL syntax and features make it easy to use as well.

Nachteile

While SQLite's lack of scaling features is forgivable (that wasn't what it was built for after all) some SQL features that are not implemented make it a hassle to write queries to SQLite databases in some instances.

Nera Joy
Nera Joy
Gesamtbewertung
  • Täglich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung

A good choice for storing small and local data

Bewertet am 19.6.2018

Vorteile

I love how SQLite is so portable, and can be used in different platforms. I doesn't need any bulky installation for me to use. It is so lightweight and there is no learning curve when you came from MS SQL.

Nachteile

Maybe when opening a large sqlite file around 1GB above, it hangs up and sometimes fails to load. But maybe that's my fault because SQLite is not intended for storing large data. Good product anyway.

Rahul
Rahul
Gesamtbewertung
  • Branche: Informationsdienst
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Wöchentlich für Mehr als 1 Jahr genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Weiterempfehlungsquote 10.0 /10

A lightweight relational database management system especially for offline mobile applications...

Bewertet am 18.1.2019

We have used SQLite in developing many mobile apps, mostly Android App and as a database at back...

We have used SQLite in developing many mobile apps, mostly Android App and as a database at back end we integrated this light weight DB system. The processing speed of queries is exceptionally fast. All the databases are working well.

Vorteile

SQLite is object based relational query language which keeps and maintained the whole databases in a very light weight, usually within 500kb to 1mb size, depending on size of databases.

This database system has everything which a standard databases must have like relationships, events, all operations, etc.

SQLite is very helpful in building application for Mobiles which stores databases in locally.

Nachteile

1. No dedicated server required.
2. Very light weight and easy to follow commands with knowledge.
3. Large community support makes learning this language even more fast and easy
4. Easy to keep backups as the whole database stored in single file.
5. Easy to implement and integrate.

Dhruvil
Dhruvil
Gesamtbewertung
  • Branche: Informationstechnologie & -dienste
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Täglich für 6-12 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 8.0 /10

SQLite review

Bewertet am 13.1.2023

Vorteile

It is easy to use . We can easily manage and exicute data in it.

Nachteile

I don't dislike this software its perfect.

Yngrid
Yngrid
Gesamtbewertung
  • Wöchentlich für Mehr als 1 Jahr genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 9.0 /10

Database manager very functional, fast and easy to use for different programming languages

Bewertet am 8.7.2018

It is a public domain tool that when created with the C ++ language gives those who have experience...

It is a public domain tool that when created with the C ++ language gives those who have experience in programming the facility to adapt it to their requirements, SQLite is independent of the platform. The operations are carried out very efficiently with a single library and a small memory

Vorteile

This Database Manager is really very functional, transactions are fast and its simple interface makes it easy to use, you can work with different programming languages such as PHP and phyton. It is much less complex than other handlers such as Postgres or MySQL

Nachteile

It is not recommended for systems that use a large amount of data, rather for medium-sized applications or for websites whose number of transactions is very high. It also does not support systems under the client-server platform

Verifizierter Rezensent
Gesamtbewertung
  • Branche: Telekommunikation
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Täglich für Mehr als 1 Jahr genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 9.0 /10

No server required, used for standalone application and less configuration

Bewertet am 25.4.2019

We are using SQLite for java and android application. SQLite is use for small and mid level...

We are using SQLite for java and android application. SQLite is use for small and mid level organization as well because its cost affordable for any one. There is no required to back up every time because SQLite make a file for backup .

Vorteile

SQLite is very faster then other database as performance wise. we are using SQLite for mobile application and desktop application. Mose imp feature i like in SQLite is at the time of deployment on production it not required any space. SQLite is lightweight. select query is very faster in standalone application.

Nachteile

There is no reporting functionality in SQLite. At the time of multiple insert query perform in queue that its goes slow for some time. There is administration in SQLite,so its very difficult to manage for multiple user.

Gareth
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Täglich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Weiterempfehlungsquote 9.0 /10

A standard for testing

Bewertet am 14.9.2019

SQLite allows us to setup and test all our database structures, it's quick and easy to get going...

SQLite allows us to setup and test all our database structures, it's quick and easy to get going and it stays out of your way. Most of the time you'll forget that it's even part of your tech stack.

Vorteile

I like that SQLite for the most part stays out of your way. As soon as you have your desired config set up, you can transfer it with ease to most other projects and it just works. We use SQLite for testing purposes as it speeds up the entire process. You can either spin a local instance up or have it run in-memory to speed up your tests. The fact that it's usage is so ubiquitous, finding help or answers online isn't an issue at all.

Nachteile

If I had to fault it at something, there is an edge case with how it builds your database structure, especially with how it handles foreign keys. It's easily handled by adjusting your test setup structure. That's the only hiccup we ever had and resolved with ease.

Barış
Gesamtbewertung
  • Branche: E-Learning
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Täglich für 1-5 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 9.0 /10

Database easily with SQLite

Bewertet am 6.6.2022

I used this application to learn database systems. I transferred the excel data I had, created...

I used this application to learn database systems. I transferred the excel data I had, created tables, and transferred this data to the external environment with an external connection.

Vorteile

The application is very easy to use. The interface is simple and user friendly. The convenience of the download process is amazing. Very little space on the computer

Nachteile

There is nothing wrong with the application, it is suitable for learning purposes.

Prince
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: 2–10 Mitarbeiter
  • Täglich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 10.0 /10

Best Lightweight Relational Database for Small Applications and Websites.

Bewertet am 3.6.2021

We always use SQLite as our database when building software and web application prototypes and when...

We always use SQLite as our database when building software and web application prototypes and when deploying basic websites and apps that are not data-intensive.

Vorteile

SQLite does not run on a server like MySQL but is part of the end application thus making data storage and retrieval very fast.

Nachteile

It is not reliable when deploying it with applications with multi-user access to database.
With websites, SQLite can only handle sites with low to medium traffic.

Verifizierter Rezensent
Gesamtbewertung
  • Branche: Logistik & Lieferkette
  • Unternehmensgröße: 201–500 Mitarbeiter
  • Wöchentlich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Weiterempfehlungsquote 8.0 /10

Great lightweight database for simple use cases

Bewertet am 6.6.2022

Overall, SQLite allows us to build tools more rapidly. We've had a productive overall experience...

Overall, SQLite allows us to build tools more rapidly. We've had a productive overall experience with SQLite.

Vorteile

I like how easy it is to use SQLite. It allows us to have a database backend without the usual set up and configuration steps needed for more complex RDBMS.

Nachteile

I don't really have anything I dislike about SQLite. It does its job well on its intended use cases.

Mehak
Gesamtbewertung
  • Branche: Computer-Software
  • Unternehmensgröße: 1.001–5.000 Mitarbeiter
  • Täglich für 6-12 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 8.0 /10

Free and quick to setup and use.

Bewertet am 28.12.2019

The use-case I used SQLite was fairly simple I had to set up some small application quickly so this...

The use-case I used SQLite was fairly simple I had to set up some small application quickly so this was the best possible solution for me.

Vorteile

The fact that it requires no installation makes it suitable for a quick application setup. It's a very lightweight tool that makes it useable across many systems. SQLite does not require a separate location that can be on the same server location which makes the I/O processing really fast and reliable.

Nachteile

Due to the lightweight, there ought to be some restrictions one of them is that a large number of concurrent access might let to a system crash. One more issue is that is works with whole DB lock while performing a write operation so all the write operations are sequential.

Jimcarl
Jimcarl
Gesamtbewertung
  • Branche: Informationstechnologie & -dienste
  • Unternehmensgröße: 1.001–5.000 Mitarbeiter
  • Täglich für 6-12 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 8.0 /10

Good choice for portable database

Bewertet am 9.9.2018

Vorteile

I like how SQLite offer T-SQL despite of being a portable database. I can create moderately complex queries and still runs fine.

Nachteile

There's nothing I really don't like with SQLite. It's free and does the job.

Umut
Gesamtbewertung
  • Branche: Unterhaltung
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Täglich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 7.0 /10

Fast Embedded database

Bewertet am 20.8.2020

Vorteile

Compact
Fast
Easy to use
Preinstalled in most platform

Nachteile

Do not support nosql features
Do not support multi client

Varun
Gesamtbewertung
  • Branche: Bau
  • Unternehmensgröße: 51–200 Mitarbeiter
  • Wöchentlich für Mehr als 1 Jahr genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 9.0 /10

Smooth and Reliable DBMS

Bewertet am 26.4.2022

My overall experience has been smooth and SQLite has satisfied most of my needs. It's a lite, easy...

My overall experience has been smooth and SQLite has satisfied most of my needs. It's a lite, easy to use and robust for everyday needs. The support community is fantastic and you can find solution to most problems there.

Vorteile

SQLite is quite easy to install and get started. This makes it one of the best DBM tools for beginners. It's open source and free to install and runs on a server-less environment. The syntax is quite similar to any other SQL database management system.

Nachteile

The competition wins when it comes to scalability and is not suited for projects that will expand.

Denis
Denis
Gesamtbewertung
  • Branche: Forschung
  • Unternehmensgröße: Selbstständig
  • Monatlich für Mehr als 2 Jahre genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Weiterempfehlungsquote 10.0 /10

Very good for studying SQL, small projects and local storage

Bewertet am 24.12.2019

Sometimes I use it as a stand alone application to make queries in the terminal or as a driver/libra...

Sometimes I use it as a stand alone application to make queries in the terminal or as a driver/library that is easily embedded into some of my software.

Vorteile

Very small footprint and overhead, battle-tested in real-world applications (which indicates that it’s pretty reliable) and well supported by several major companies.
It’s also very good for people learning SQL due to its simplicity.

Nachteile

Cannot handle very large datasets well. It’s not ideal for concurrently running or distributed software.

Verifizierter Rezensent
Gesamtbewertung
  • Branche: Informationstechnologie & -dienste
  • Unternehmensgröße: 51–200 Mitarbeiter
  • Täglich für 1-5 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Preis-Leistungs-Verhältnis
  • Bedienkomfort
  • Kundenbetreuung
  • Weiterempfehlungsquote 7.0 /10

SQLite is a good embedded database choice

Bewertet am 29.1.2019

Vorteile

I like how SQLite offer similar capabilities with full-pledged MSSQL. It runs traditional TSQL and it stays small in file size. It's very convenient to use and have so 3rd party management tools available.

Nachteile

When the database gets large, say around 2 gigs, loading times can be a bit slow.

Zach
Gesamtbewertung
  • Branche: Computer-Vernetzung
  • Unternehmensgröße: 10.000+ Mitarbeiter
  • Wöchentlich für 6-12 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Weiterempfehlungsquote 8.0 /10

fast flexible database with robust features

Bewertet am 11.6.2020

SQLite works great for our specific use case as we prefer performance over HA / concurrency.

SQLite works great for our specific use case as we prefer performance over HA / concurrency.

Vorteile

Extremely portable and fast ACID store. SQLite is very battle tested and highly performant. There are many bindings for various programming languages which makes it easy to get started with. If you couple SQLite with fast SSD, the performance is incredible (since it's just a file). Backup and restore is super easy and fast.

Nachteile

SQLite is for a very specific use case and there are no distribution properties or guarantees. Designed to be very simple so not a lot of tuning for SQLite. If you want high availability and concurrency, you may want to look at a different solution.

Verifizierter Rezensent
Gesamtbewertung
  • Branche: Informationstechnologie & -dienste
  • Unternehmensgröße: 11–50 Mitarbeiter
  • Wöchentlich für 1-5 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Weiterempfehlungsquote 8.0 /10

Good database to choose if you have small database requirements.

Bewertet am 2.3.2023

Vorteile

It is quite easy to use with its well versed documentations. The database administration for SQLite is also particularly excellent. The installation and setup is very very easy quick.

Nachteile

SQLite cannot be used for large data requirements so one cannot use it for businness purposeswith high data availability

Danoosh
Gesamtbewertung
  • Wöchentlich für Mehr als 1 Jahr genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Weiterempfehlungsquote 8.0 /10

A suitable light weight for small applications (and learning)

Bewertet am 17.5.2018

Vorteile

I use this for teaching SQL and databases to beginners. It is very easy to setup and navigate (command line and DB browser). It has reasonable power to deal with mid-range databases for developing and supporting small applications

Nachteile

If you are working with enterprise scale data (even small in enterprise realm), it will crash on you quite easily. You can not have multiple connections and it does not have many features of free MySQL

Verifizierter Rezensent
Gesamtbewertung
  • Branche: Erneuerbare Energien & Umwelt
  • Unternehmensgröße: 501–1.000 Mitarbeiter
  • Weitere für 6-12 Monate genutzt
  • Quelle der Bewertung

Gesamtbewertung

  • Bedienkomfort
  • Weiterempfehlungsquote 8.0 /10

a very decent IDE

Bewertet am 13.3.2019

very happy

very happy

Vorteile

it's easy to use and doesn't get too much space on your system!

Nachteile

Maybe not a proper choice for very big projects! but great for practicing or small projects