Gossamer Forum
Home : Products : DBMan : Installation :

Demo WORKS- just trying to add a new fieldname

Quote Reply
Demo WORKS- just trying to add a new fieldname
SmileI have the non sql demo working. As a test I am trying to add a new field name to the default.cfg. Say "Name". I aded this:

Name => [10, 'alpha', 40, 255, 1, '', ''],

I also set the auto generate to 1 (on)
Now I get error message. Debug did not help me.

What am I missing...Thanks

Last edited by:

genecap: Oct 6, 2002, 9:03 AM
Quote Reply
Re: [genecap] Demo WORKS- just trying to add a new fieldname In reply to
Did you add a comma after the userid field?

Userid => [9,'alpha', -2,15,0,'',''],

and then add you new field:

Name => [10, 'alpha', 40, 255, 1, '', '']

as the last field it would not end with a comma.

There is an excellent DBMan tutorial on JPDeni's web site
If you plan on adding an extra modifications later you will most likely want to create your own displays and not use autogenerate.

Let us know if this helped.

Unoffical DBMan FAQ

http://creativecomputingweb.com/dbman/index.shtml/
Quote Reply
Re: [LoisC] Demo WORKS- just trying to add a new fieldname In reply to
LaughThank you... I now have the Name field name, but looks like other things happened. I will figure that out by looking at the URL you suggested. Thanks to you, I now know about the , (and... no comma at last field name). Thanks again ...