[Message Deleted]
-
erfy wrote:
how i can create a database for my program?
Microsoft SQL, Access, MySql, Oracle? be specific.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
erfy wrote:
how i can create a database for my program?
Microsoft SQL, Access, MySql, Oracle? be specific.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
If you are using MFC, try:
CDatabase Db;
Db.OpenEx("DRIVER={SQL Server};SERVER=(local);UID=sa; PWD=", CDatabase::noOdbcDialog);
Db.ExecuteSQL("CREATE DATABASE MyDB");
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
I suggest use Access and you can see Examples from Acess in MSDN_**
**_
whitesky