A easy question about building SQL databases-please answer!

dcpsoguy

Diamond Member
Nov 5, 2000
3,252
0
0
I would like to create a SQL database in Coldfusion( a programming language that connects to databases). Which program should I use to create an SQL database in Coldfusion?
 

Locutus of Board

Diamond Member
Dec 14, 1999
7,187
0
0
Hmmm

Your question is slightly confusing.

You create a database via the SQL enterprise manager.

You set up a DSN for your coldfusion server to point to it.

(I have done this with other programs, not CF. The theory is the same.)

There must be some way in CF to setup any tables and stored procedures that may be needed.
 

dcpsoguy

Diamond Member
Nov 5, 2000
3,252
0
0
That answers my question. Thanks so much!!!

How much does the SQL enterprise manager cost?
 

Locutus of Board

Diamond Member
Dec 14, 1999
7,187
0
0
If you are speaking of M$ SQL server, check it out there. I dunno.

You may be able to get away cheaper, if CF supports MYSQL or other DB.

Whatever DB you choose to use, just make sure CF supports it.
 

cyclistca

Platinum Member
Dec 5, 2000
2,885
11
81
No MYSQL is a utility that allows you to set up and maintain an SQL database. As some else said it is free. Most other SQL software like Oracle or Microsoft is aimed at the corporate market and is price accordingly. If this is for personal use or a small database MYSQL should be fine.

SQL stands for structured query language. It the language that you use to input, modify, delete, and manipulate the data in your database.

For the most part SQL is standard across the variations. Most vendors do like to add their own little additional features just to piss off us SQL developers :).
 

thEnEuRoMancER

Golden Member
Oct 30, 2000
1,415
0
71
SQL (structured query language) itself is a database standard. MS Sql and MySql are database products, implementing this standard.
 

jobert

Senior member
Nov 20, 1999
714
0
0
Both MySQL and Microsoft SQLServer are fairly complex.
(The SQL Enterprise Manager that Locutus mentioned is
one component (of MANY) in the Microsoft product.)

Unless you're doing some heavy duty real-time
data manipulation, you can connect to Access,
which is much more user-friendly.

You can also use Visual Basic to create
a SQL compliant database (although I'll
bet the purists here would frown on that.)