Database?
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
- Posts: 11
- Joined: Wed Mar 07, 2007 6:59 pm
Database?
I have made a list of one line addresses. Is it possible to create a searchable database with textpad? I have in mind a booking system for taxi firm.
- talleyrand
- Posts: 624
- Joined: Mon Jul 21, 2003 6:56 pm
- Location: Kansas City, MO, USA
- Contact:
Database? No. A searchable text document, you bet.
TextPad might be a great way to write the program that would allow you make a booking system for a taxi firm but I don't see how it'd be the booking system.
TextPad might be a great way to write the program that would allow you make a booking system for a taxi firm but I don't see how it'd be the booking system.
I choose to fight with a sack of angry cats.
-
- Posts: 11
- Joined: Wed Mar 07, 2007 6:59 pm
-
- Posts: 11
- Joined: Wed Mar 07, 2007 6:59 pm
- Jon Summers
- Posts: 8
- Joined: Sat Mar 10, 2007 6:12 pm
- Location: Somerset
- Contact:
Simple DB
Convert each address line to comma-separated values (CSV), then import the text file into Excel or another spreadsheet.
Excel provides column searching and ordering.
Excel provides column searching and ordering.
Regards, Jon Summers
-
- Posts: 11
- Joined: Wed Mar 07, 2007 6:59 pm
-
- Posts: 4
- Joined: Fri Mar 09, 2007 2:47 pm
You can actually... It can't do relational but for basic flat record storage it can't be beaten.
you need for a database:-
1. A way to identify columns (explicit order tab separated)
2. A way to identify rows (line number)
3. A way to search for data in particular rows (F5)
4. A way to sort (Ctrl+A, F9!)
A booking system would probably be better done in Access or even better something more robust...
you need for a database:-
1. A way to identify columns (explicit order tab separated)
2. A way to identify rows (line number)
3. A way to search for data in particular rows (F5)
4. A way to sort (Ctrl+A, F9!)
A booking system would probably be better done in Access or even better something more robust...
-
- Posts: 11
- Joined: Wed Mar 07, 2007 6:59 pm
Hey railroader. I don't mean to be rude but have you tried to do any research on your own rather than continually asking for the hand feeding? Most folks want to lend a hand but most folks are really busy doing their own work too.
To understand csv file and databases one only has to exploit the wealth of info on the net, but in the interests of being helpful here are some links to get you started:
Databases
CSV (Comma Separated Values) files
To appreciate why CSV files are useful (and a common denominator between database applications) see --
Parsing
Cheers,
Michael.
To understand csv file and databases one only has to exploit the wealth of info on the net, but in the interests of being helpful here are some links to get you started:
Databases
CSV (Comma Separated Values) files
To appreciate why CSV files are useful (and a common denominator between database applications) see --
Parsing
Cheers,
Michael.
/* Somewhere, something incredible is waiting to be discovered. Carl Sagan. */
-
- Posts: 11
- Joined: Wed Mar 07, 2007 6:59 pm
Railroader, this forum IS about swapping information about certain topic: about TextPad text editor. It IS NOT about swapping information about life, Universe and everything.
What you ask are questions not related to the topic of this forum. I believe that myself and a few other guys politely indicated direction you should be following. Another good move would be to find an appropriate forum, NOT this one. On the Internet there are hundreds thousands of forums dedicated to all possible topics. This one is about TextPad, a text editor. Wrong place.
What you ask are questions not related to the topic of this forum. I believe that myself and a few other guys politely indicated direction you should be following. Another good move would be to find an appropriate forum, NOT this one. On the Internet there are hundreds thousands of forums dedicated to all possible topics. This one is about TextPad, a text editor. Wrong place.
- Jon Summers
- Posts: 8
- Joined: Sat Mar 10, 2007 6:12 pm
- Location: Somerset
- Contact:
Simple Database
"How do you convert to comma seperated values?"
Have you looked at a comma separated value (CSV) file? Use Excel to create a simple table, then 'Save As' csv. Open the CSV file with your favourite text editor.
Have you looked at a comma separated value (CSV) file? Use Excel to create a simple table, then 'Save As' csv. Open the CSV file with your favourite text editor.
Regards, Jon Summers
- talleyrand
- Posts: 624
- Joined: Mon Jul 21, 2003 6:56 pm
- Location: Kansas City, MO, USA
- Contact:
-
- Posts: 11
- Joined: Wed Mar 07, 2007 6:59 pm