Reputation: 11
I have installed the ADS 10.0 version on my win7 successful, and it run as a windows service. Then I take a look at windows program menu and found there is a menu named "Advantage Database Server" and it only includes "Advantage Configuration Utility" sub-menu, I open it and have no found where can create database.
My question:
Any one can help me, thanks a lot!
Upvotes: 1
Views: 1542
Reputation: 14873
The Advantage Configuration Utility tells you whether the service is running and you can start and stop it from there (or from the Windows Service Manager).
Since ADS is a hybrid between a client/server and a desktop database the meaning of database
is depending on the context, it can be:
A directory that has some tables (.adt
or .dbf
files with optional additional files for index, lob data, etc.) in it.
An Advantage Database Dictionary (a filename that ends with .add
that links to addtional files and eventually table files as in 1.).
A server side alias (\\MYADSSERVER\MYALIAS
).
The server itself that has an ADS service running on some socket (ip:port
).
An Advantage Internet Server (AIS
).
The simplest case would be 1. Where you just put some existing tables in a directory (or create new tables with Advantage Data Architect "ARC32").
If you want to know more read the documentation. It is installed with ARC32 (just open the Help menu) or can be read online:
http://devzone.advantagedatabase.com/dz/content.aspx?key=32
http://devzone.advantagedatabase.com/dz/webhelp/Advantage12/index.html
The ODBC part of your question already has answers elsewhere:
What is the proper connection string for Advantage Database Server?
Upvotes: 1