Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
how to create sql?
Name: chris730 Date: October 12, 2004 at 20:04:28 Pacific OS: Win XP Pro CPU/Ram: 1.5 Ghz
Comment:
i was wondering i see online that sql is mainly just a statement like "select (some name) where (some place)" and i know that those places are in the database. but what i was wondering is if you were to program that in c++. would that select statement be a function in the program that'd have to figure out. or am i just getting this all wrong? is there already a statement in c++ that takes care of select? also if someone could explain or direct me to a source that could tell me what a parse tree was that would be amazing. thanks
Name: Sci-Guy Date: October 12, 2004 at 21:10:59 Pacific
Reply:
Actually, I think it's more like: "select (some field) where (some condition)".
0
Response Number 2
Name: Chi Happens Date: October 13, 2004 at 05:58:39 Pacific
Reply:
When you hear about SQL it is usually talking about TSQL, or Transact Structured Query Language. It is not an object or function, it is a language. Your programming language does not have a Select function, you must create objects that can access a database and then pass TSQL strings through that object.
For example:
string SQLStatement = "SELECT * FROM User";
Hope this educates some Chi
Chi Happens "They mostly come at night...mostly"
0
Response Number 3
Name: Chi Happens Date: October 13, 2004 at 06:01:29 Pacific
Name: zoddy Date: October 13, 2004 at 13:47:48 Pacific
Reply:
you will first need an SQL server. mysql is popular.
www.mysql.com
A+ Certified MCSE soon
0
Response Number 8
Name: Chi Happens Date: October 14, 2004 at 05:21:05 Pacific
Reply:
IR,
DING DING DING!!! You're the winner.
That's right, my name is pronouned Chee,
This is from Dictionary.com:
The vital force believed in Taoism and other Chinese thought to be inherent in all things. The unimpeded circulation of chi and a balance of its negative and positive forms in the body are held to be essential to good health in traditional Chinese medicine.
Summary: I'm here again to ask how to create different forms within a program, or a command to run a different program after executing one. Please help me in VB.Net. I'm specifically looking to make a password...
Summary: I'm a beginner and I would like to know how to create a program that use (and save) a database. Can you please give me a simple example in C language for store name, address and phone numbers ? Thank...