Tecno Android Phones, Samsung Imei Repair, Huawei Mediapad, Official Firmware/ Flash File, WiFi, Alcatel One, Flash Tool Windows, Android Jelly Bean

How to use a text file as a database while programming

How to use a text file as a database while programming - we say welcome to the blog Tecno Android Phones we provide a lot of latest gadget information that must be very dear for you to miss, now we will discuss first about How to use a text file as a database while programming we have collected a lot of information to make this article to complete for you, Please read:

Articles : How to use a text file as a database while programming
full Link : How to use a text file as a database while programming

You can also see our article on:


How to use a text file as a database while programming

Welcome back to another post of Teckguide. It has been really long since I have written a post, I am really sorry about that. But I am back with a useful and informative post for all of you. In this post we will see how to use a simple text file as a database.

Not a lot of people realize this but normal text file can be a simple alternative for a database like SQL, mongo etc. Although a database is simple to use, beginners find it difficult to use them in their program. So this post if for you if you belong to that category. But before that,

What is a database?

A database is a collection of data that is stored in the form of tables or relations to easily access any element and all its aspects in one place. These databases have a special column for a ‘primary key’ where a value, that uniquely differentiates all the element, is stored.

So it can be imagined like a table with multiple rows and columns. A database can multiple tables. For example, a company can have a database where they can have one table for details of the employee salary details, one table for employee designation etc. But all these tables will have on common column so that it is easy to connect the tables with each other. Also a database may or may not require a password to access the data.

How is it used?

Generally, a database is created using a language like SQL. and the database is hosted on the internet. Once a database is hosted on the internet, is can be remotely from anywhere. There are two basic kinds of access provided for the database. A) Read access B) Read and WRITE access. If only the read access is provided, the user can only read the data but cannot write anything to it. But with the read and write access the user can read as well as write data to the database.
Once the access to the database is gained, the data can be retrieved from the database programmatically. Most of the programming languages provide modules to work with databases.

The alternative:

The data can be represented on a text file also in the form of tables. Well not exactly tables, but close enough. Using a text file instead of a database is not exactly a wise thing to do but for the time being it is good enough.
So let’s just get into get into how it’s done.
  • In a regular text file, the columns can be represented by separating the values by either a coma or space.
  • The rows can be separated by sentences, i.e. one sentence represents on row.
  • These files can be read easily using any programming language.
  • While reading the data, each sentence can be stored as different elements of an array.
  • Further, each value can be stored in another sub array. So the whole data is stored in a 2D array.
  • Now every element can be accessed easily for example by using split() function in python. Specially in a language like python where there is dictionary datatype.


This way we can not only read but also add more entries and modify existing ones. According to me this is a very simple and easy alternate for a database.

This can be used in small scale projects, school projects, test purpose etc.

That is all I have for today, I will be back with more interesting and useful programming tips in the future. Until next time, don’t forget to subscribe, share and like.




Articles about How to use a text file as a database while programming finished discussed

We think it is enough information about How to use a text file as a database while programming, hopefully the information we give can give benefit for you,

If you feel the information How to use a text file as a database while programming that we provide can provide benefits for others please share with link https://southernmatron.blogspot.com/2016/03/how-to-use-text-file-as-database-while.html thank you for visiting our blog page and do not forget to visit other pages.

Tag :
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : How to use a text file as a database while programming

0 komentar:

Post a Comment