About Store Forum Documentation Contact



Post Reply 
Creating a Database?
Author Message
MikeyUchiha Offline
Member

Post: #1
Creating a Database?
I was wondering, what would be the best way to go about extending the user accounts to a database like MySQL? Instead of having a file based list.
12-21-2010 02:27 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Creating a Database?
I guess finding a c++ sql library.
12-21-2010 02:30 PM
Find all posts by this user Quote this message in a reply
Salival Offline
Member

Post: #3
RE: Creating a Database?
(12-21-2010 02:27 PM)MikeyUchiha Wrote:  I was wondering, what would be the best way to go about extending the user accounts to a database like MySQL? Instead of having a file based list.

Depends what you like, but MySql or MSSQL library.
12-21-2010 04:07 PM
Find all posts by this user Quote this message in a reply
MikeyUchiha Offline
Member

Post: #4
RE: Creating a Database?
MySQL
12-22-2010 02:32 AM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #5
RE: Creating a Database?
Do some research yourself... on google you can find a dozen of c++ SQL templates...

There is always evil somewhere, you just have to look for it properly.
12-22-2010 03:12 AM
Visit this user's website Find all posts by this user Quote this message in a reply
MikeyUchiha Offline
Member

Post: #6
RE: Creating a Database?
I did look it up. I'm just trying to figure out how to go about implementing it into the engine itself. I'm sorry that I'm new with this. =\ By the way I'm trying to interface this with the MMO. If that helps any.
12-22-2010 04:23 AM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #7
RE: Creating a Database?
Its not just plug and play... you need to code it yourself we can't help you with that. For me was it new also like 2/3 years ago but i figured it out by my self and learned a lot from it... so as advice ill tell you to try it and if you got some compile or runtime problems we can help you with that.

There is always evil somewhere, you just have to look for it properly.
(This post was last modified: 12-22-2010 05:06 AM by Dynad.)
12-22-2010 05:05 AM
Visit this user's website Find all posts by this user Quote this message in a reply
MikeyUchiha Offline
Member

Post: #8
RE: Creating a Database?
Alright. I'll work on it and come back with my endeavors. Thanks for the advice. ^_^
12-24-2010 01:47 AM
Find all posts by this user Quote this message in a reply
Jben Offline
Member

Post: #9
RE: Creating a Database?
news ?

www.sawgenius.iola-corp.com || www.sgs-dev.blogspot.com
04-04-2011 03:21 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #10
RE: Creating a Database?
I am working on native SQL class support in EE, basic functionality has been tested and working (reading data from ready MS SQL database), later I'll test other functionality, create tables, modify data, etc.
will be in next SDK
04-06-2011 11:31 PM
Find all posts by this user Quote this message in a reply
Jben Offline
Member

Post: #11
RE: Creating a Database?
Majestic Magnificent Marvelous Magical Prestigious Genial !

www.sawgenius.iola-corp.com || www.sgs-dev.blogspot.com
04-06-2011 11:33 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Jben Offline
Member

Post: #12
RE: Creating a Database?
Oracle is not more powerful than SQL?

ww.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html
04-10-2011 10:24 PM
Visit this user's website Find all posts by this user Quote this message in a reply
baphomeh Offline
Member

Post: #13
RE: Creating a Database?
If adding support of SQL to esenthel, please use an open source baseline such as MySQL (or any other open source one) as opposed to one which costs (MS SQL). Thank You
04-11-2011 05:23 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #14
RE: Creating a Database?
MS SQL Express is free
but im thinking of adding support for mysql too
04-11-2011 06:42 PM
Find all posts by this user Quote this message in a reply
Nostre Offline
Member

Post: #15
RE: Creating a Database?
Well when your work on it.
SQLite3 is free and is for persistence on Mmo, Android and on a lot of other brand name. Please check if you can put it in game engine at the same time it’s will be mush appreciate thankssmile
04-12-2011 01:55 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply