Database functions besides SQL

In this category you can exchange your programming questions and solutions.
Post Reply
marcuslee
Posts: 3
Joined: Tue Nov 08, 2005 3:00 pm

Database functions besides SQL

Post: # 312Post marcuslee
Tue Sep 02, 2008 12:15 am

Hey, got another question.

Are there any other database functions, like random access files for example, besides the MySQL example that comes with the download?

If there isn`t, that is one that I would add for the next version.

Mark

TP911
Posts: 36
Joined: Tue Nov 08, 2005 3:00 pm

Database functions besides SQL

Post: # 313Post TP911
Fri Sep 05, 2008 2:23 am

right now MySQL lite and Flat File are the only choices.

if you are doing something really crazy the SQL will handle it, if it is a few hundred simple records, then why not a Flat File?
it is text and can be modified without all the overhead.


cmccann
Posts: 2
Joined: Tue Nov 08, 2005 3:00 pm

Database functions besides SQL

Post: # 314Post cmccann
Mon Sep 08, 2008 1:17 pm

I am rather new to programming.  Is there an example of a flat file database that I can use as a reference?

Than You for any help you can give me.

TP911
Posts: 36
Joined: Tue Nov 08, 2005 3:00 pm

Database functions besides SQL

Post: # 315Post TP911
Tue Sep 09, 2008 2:29 am

I`ll get so something as quick as I can, getting the final stuff on FnxDesigner gets some priority and I also used it to build an example.
Also I am having the learn all the "unique" things that FNX can do and how it can be used.

Now the serious stuff......90% planning produces 10% "do it over" but 10% planning will get 90% life in hell.
Get a good design for your data and 80% of your work is done.
The programs [use apps] can change with no problem but having restructure the DB every other month just will not work.
I have a customer that FireFox3 failed to get their HTML bookmarks and load them, thankfully you can import them.
See what I mean.

PS: long day and just remembered to say send me a DB layout and I`ll give you the basics to go on.
this is the "thought" process.
aPart = Field$(string, delimiter, index) is the magic function
Getting the delimiter is part of the design.
If you do comma [,] and set up LName,FName,Phone,Fax,Cell [Pattillo,Trey,###,###,###] then someone will surely do
Pattillo,Trey in LName or FName and you trash the DB with Pattillo,Trey,,###,###,### [notice 2 commas is now 6 fields.
I have used ~ since not much used it and having to do a shift with the key mean the user can not trash the DB just make
the data look bad [hello -- validate and scrub your data].
A ; is pretty good as only the telephone company`s will use it like Smith;John

Giving it up for tonight - only got 3 hours sleep last night and home at 9:00CDT


--Trey Pattillo


cmccann
Posts: 2
Joined: Tue Nov 08, 2005 3:00 pm

Database functions besides SQL

Post: # 316Post cmccann
Thu Sep 11, 2008 11:11 pm

Trey,

I left you a private message regarding the flat file database.

Regards,
Chip McCann

Post Reply