473,387 Members | 1,504 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

dictionary within dictionary

Fox
Hi,

I am working on a project which
used dictionaries. I am having
to remake part of this and have
no experience with the
scripting dictionary.

I need to see how to create multiple
dictionaries within one dictionary.
Can someone point me to some
reading materials on this where I
might see an example as well?

Thanks,
Fox
Jul 22 '05 #1
5 2730
Dictionaries cannot contain dictionaries. You can have an array of
dictionaries though. But why are you using all these dictionaries? Do you
work at an insurance company in SE Pennsylvania, by chance?

Ray at work

"Fox" <fox @ connexions.net> wrote in message
news:Ox**************@TK2MSFTNGP14.phx.gbl...
Hi,

I am working on a project which
used dictionaries. I am having
to remake part of this and have
no experience with the
scripting dictionary.

I need to see how to create multiple
dictionaries within one dictionary.
Can someone point me to some
reading materials on this where I
might see an example as well?

Thanks,
Fox

Jul 22 '05 #2
Fox
Good question.
I am redoing a site for an event which requires
a somewhat complex registration. One option is
a family option. This means they can register
a number of competitors on the same credit card.
So I need to keep track of the info for each of the
registering competitors, during that session, until
they check out and submit the credit card.

There are quite a few options/fields for each competitor.
The previous incarnation of this AP uses a scripting
dictionary to hold the info until the credit card is
processed. Then it commits the data for all the
competitors in that family's session, to the database.

I am being asked to do it the same way, but I do not
know how this quite works. The original code is over
my head and too complex with variables for me to
figure out all that is going on.

The bottom line is that I need a way to
keep the registration data in memory, for
each registrant in that session, until the
mom or whoever then submits the credit card.
For reasons to not be explained here, I cannot
commit the data to the database beforehand.
I must keep it in memory.

If you can give me a clue or point me to where
I might learn how to handle this, I would greatly
appreciate it.

Regards,
Fox

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:e5**************@TK2MSFTNGP09.phx.gbl...
Dictionaries cannot contain dictionaries. You can have an array of
dictionaries though. But why are you using all these dictionaries? Do you work at an insurance company in SE Pennsylvania, by chance?

Ray at work

"Fox" <fox @ connexions.net> wrote in message
news:Ox**************@TK2MSFTNGP14.phx.gbl...
Hi,

I am working on a project which
used dictionaries. I am having
to remake part of this and have
no experience with the
scripting dictionary.

I need to see how to create multiple
dictionaries within one dictionary.
Can someone point me to some
reading materials on this where I
might see an example as well?

Thanks,
Fox


Jul 22 '05 #3
Fox
Note that there are 103 fields to
be remembered for each registrant.
This means that I have to keep each
of them in memory, related by their
family ID, until the credit card check
out. Then each is committed as a
separate record. I am told by the
hosts of the server, that they want
me to use the dictionary to limit the
accessing of the database to only
when necessary. Otherwise I would
commit all the data to the database and
then enable the record if the payment
was successful. But, I am not allowed
to do this.

Regards,
Fox

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:e5**************@TK2MSFTNGP09.phx.gbl...
Dictionaries cannot contain dictionaries. You can have an array of
dictionaries though. But why are you using all these dictionaries? Do you work at an insurance company in SE Pennsylvania, by chance?

Ray at work

"Fox" <fox @ connexions.net> wrote in message
news:Ox**************@TK2MSFTNGP14.phx.gbl...
Hi,

I am working on a project which
used dictionaries. I am having
to remake part of this and have
no experience with the
scripting dictionary.

I need to see how to create multiple
dictionaries within one dictionary.
Can someone point me to some
reading materials on this where I
might see an example as well?

Thanks,
Fox


Jul 22 '05 #4
"Fox" wrote in message news:eW**************@TK2MSFTNGP14.phx.gbl...
: Note that there are 103 fields to
: be remembered for each registrant.
: This means that I have to keep each
: of them in memory, related by their
: family ID, until the credit card check
: out. Then each is committed as a
: separate record. I am told by the
: hosts of the server, that they want
: me to use the dictionary to limit the
: accessing of the database to only
: when necessary. Otherwise I would
: commit all the data to the database and
: then enable the record if the payment
: was successful. But, I am not allowed
: to do this.
:
: Regards,
: Fox
:
: "Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
: message news:e5**************@TK2MSFTNGP09.phx.gbl...
: > Dictionaries cannot contain dictionaries. You can have an array of
: > dictionaries though. But why are you using all these dictionaries? Do
: you
: > work at an insurance company in SE Pennsylvania, by chance?
: >
: > Ray at work
: >
: > "Fox" <fox @ connexions.net> wrote in message
: > news:Ox**************@TK2MSFTNGP14.phx.gbl...
: > > Hi,
: > >
: > > I am working on a project which
: > > used dictionaries. I am having
: > > to remake part of this and have
: > > no experience with the
: > > scripting dictionary.
: > >
: > > I need to see how to create multiple
: > > dictionaries within one dictionary.
: > > Can someone point me to some
: > > reading materials on this where I
: > > might see an example as well?

If you're keys for each dictionary are 1-103 with the associated answer in
the items, the dictionaries are indexed for each registrant, you can keep
track of the indexed dictionaries in a variable as a counter.

Most likely the payment portion should be in it's own dictionary.

dx = dictionary
Ex.
d0 = Payment information. ' dictionary 0
d1 = First registrant ' dictionary 1
d2 = Second registrant ' dictionary 2
ndx = 2 ' variable to hold registrant index

ndx will be 1 for only 1 person and x for x number of persons being
registered all being paid for by the same credit card.

Not see code makes it difficult but this is a simple possibility if it will
work with your code.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #5
Fox wrote:
I am working on a project which
used dictionaries. I am having
to remake part of this and have
no experience with the
scripting dictionary.
I need to see how to create multiple
dictionaries within one dictionary.


Given one dictionary name(we'll call it "dict1") and a second dictionary
name ("dict2") then to store the variables (name, age, address,...) for
each merely concatenate the dictionary name with the variable name, and
store/retrieve to/from a single Dictionary object ("BigDict") e.g.:
name1 = BigDict.Item("dict1" & "name")
age1 = BigDict.Item("dict1" & "age" )
....
name2 = BigDict.Item("dict2" & "name")
age2 = BigDict.Item("dict2" & "age" )
....

Now everything's in one dictionary, BigDict, as you requested.

But you might better use the Session object, since it is addressed in a
similar manner and is more readily accessible:
name1 = Session("dict1" & "name")
age1 = Session("dict1" & "age" )
....
name2 = Session("dict2" & "name")
age2 = Session("dict2" & "age" )
....
Jul 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

57
by: Egor Bolonev | last post by:
why functions created with lambda forms cannot contain statements? how to get unnamed function with statements?
2
by: quadric | last post by:
Hi, I would like to pass a dictionary from my Python code to my Python extension, extract various values from the dictionary (from within the extension) , modify the values for the relevant...
1
by: t0M | last post by:
It's nearly impossible to find anything on this because of the Dictionary class, included within the dotnet framework, that pollutes any search results pertinent to my question. I want to be...
3
by: seberino | last post by:
At top of a module I have an integer like so... foo = 4 In a function in that module I know I need to do 'global foo' to get at the value 4. .... IIRC, for dictionaries you DO NOT have...
15
by: barbaros | last post by:
Hello everybody, I need some advice on the following problem. I want to write a program (in C or C++) which will build a huge dictionary (hash array, if you prefer). The keys are strings, the...
12
by: Brett Romero | last post by:
If I want to take action on the Add event of a generic Dictionary, do I need to create a custom Dictionary and add an event handler for the Add() method? The dictionary is a public field on a...
0
by: sweeps78 | last post by:
Hi, I have a property in one of my classes that returns a Dictionary object: public abstract partial class NonStationary : Structural { protected NonStationary(string name,...
7
by: bonk | last post by:
Hello I am acessing a Dictionary<TKey,TValuefrom multiple threads and often in a foreach loop. While I am within one of the foreach loops the other threads must not modify the collection itself...
8
by: akameswaran | last post by:
I wrote up a quick little set of tests, I was acutally comparing ways of doing "case" behavior just to get some performance information. Now two of my test cases had almost identical results which...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.