About 187,000 results
Open links in new tab
  1. Text files (.txt) as Database: best practices - Stack Overflow

    Jun 21, 2018 · I want to use txt files as database. Is there any advice, like a list of best practices, for people who want to use txt files as database? For example: Should I use only one-line files, …

  2. How to import data from text file to mysql database

    I have a 350MB file named text_file.txt containing this tab delimited data: 345868230 1646198120 1531283146 Keyword_1531283146 1.55 252910000 745345566 1646198120 1539847239

  3. When should use of database be preferred over parsing data from …

    When should a database be preferred for storing the data over storing the data in a text file? Wikipedia tells us that a database is an organized collection of data.

  4. Database vs Flat Text File: What are some technical reasons for ...

    Jul 10, 2012 · Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn't an issue? [closed] Asked 16 years, 3 months ago Modified 13 …

  5. How can I use a text file as database in Python?

    Apr 25, 2017 · I want to know what is the efficient way to insert several data to text file as database logic? For instance I have set of cars, these cars have their id, name, and color …

  6. How to load data from a text file in a PostgreSQL database?

    May 16, 2017 · Then you will have a table that exactly mirrors what is in the file. If the table can not be parsed by the options to the foreign table creation, then it is also possible to read in the …

  7. How to import data from .txt file to populate a table in SQL Server

    Every day a PPE.txt file with clients data, separated by semicolon and always with the same layout is stored to a specific file directory. Every day someone has to update a specific table …

  8. Java txt file as database - Stack Overflow

    Jan 1, 2021 · If you want a simple text file as a database, load the text file into memory on startup, e.g. as a Map<String, User> keyed by adminUserName, and add a new user there. Whenever …

  9. php - TXT File or Database? - Stack Overflow

    May 23, 2010 · Using a database will be more efficient. You'll be able to query and do operations to select data much more easily than if it is in a text file. The text file would have to be …

  10. How can I use a .txt. file as a database in C++? - Stack Overflow

    Jan 27, 2017 · The easiest method for using a text file as a database is to have fixed length fields. This allows for fast reading (reading in blocks) and you can calculate where the record is and …