Looking for a STL implementation
Hi,
Im looking for a STL implementation that implement a database layer too.
I dont know how the name is exactly, but is something like RockWave o RockWell, but i cant find it with these names, then, I think may be a similar name that what Im looking for.
If some of you know that library, please send me the correct name.
Thanks
naher
[377 byte] By [
naher] at [2007-11-19 22:48:03]

# 1 Re: Looking for a STL implementation
http://dtemplatelib.sourceforge.net/
Regards,
Paul McKenzie
# 2 Re: Looking for a STL implementation
Well thanks, but I knew DTL, but I think is not which Im looking for, which Im looking for is a complete STL implementation, plus a database layer.
naher at 2007-11-9 1:05:04 >

# 3 Re: Looking for a STL implementation
Well thanks, but I knew DTL, but I think is not which Im looking for, which Im looking for is a complete STL implementation, plus a database layer.What do you mean by "complete STL implementation"? There is no "complete STL implementation" of a database, since STL does not have database classes.
So what really are you looking for?
Also, how do you know that DTL is not implemented using STL? It certainly uses STL concepts, and from reading the documentation, can be used with STL algorithms and functions. That is the best you will do, unless you want to keep looking forever...
Regards,
Paul McKenzie
# 4 Re: Looking for a STL implementation
You cannot expect the standard library to support everything. But it doesn't really need to.
There are plenty of free open-source non-standard libraries, many of which are very good.
The most popular database library is MySQL which actually supports a full implementation of a database. The above is more of a plug-in to write C++ code for existing databases (i.e. you already have a database and you want to write C++ code to interact with it). Of course with MySQL your database can also interact with other languages (including PHP for web-based applications).
# 5 Re: Looking for a STL implementation
Hi,
sorry, my english is not the best, then may be I didn't explain correctly what I need.
Im looking for a library that is STL implementation (vector, map, algorithms, etc) and implement a database layer too.
I think that I found it, I think that I was looking for is SourcePro C++ (www.roguewave.com).
I was looking that library because I will work with people that is using this library.
I realize the benefits of DTL, and I had been using MySQL, and if I would have to choose I would study the case, but now, I cant choose, I have to use this library.
Thanks
naher
naher at 2007-11-9 1:08:17 >

# 6 Re: Looking for a STL implementation
Hi,
sorry, my english is not the best, then may be I didn't explain correctly what I need.
Im looking for a library that is STL implementation (vector, map, algorithms, etc) and implement a database layer too.The link you posted to SourcePro mentions absolutely nothing about STL.
Regards,
Paul McKenzie
# 7 Re: Looking for a STL implementation
SourcePro includes an implementation of STL.
In fact I often use that site as my main STL documentation help.