Click here to Skip to main content
16,010,553 members
Home / Discussions / Database
   

Database

 
GeneralRe: Another SQL Server Q Pin
Mazdak18-Jul-02 19:20
Mazdak18-Jul-02 19:20 
GeneralCREATE DATABASE Pin
Mazdak18-Jul-02 3:45
Mazdak18-Jul-02 3:45 
GeneralRe: CREATE DATABASE Pin
Martin Ziacek18-Jul-02 4:38
Martin Ziacek18-Jul-02 4:38 
GeneralRe: CREATE DATABASE Pin
Mazdak18-Jul-02 19:17
Mazdak18-Jul-02 19:17 
GeneralRe: CREATE DATABASE Pin
Jeremy Falcon18-Jul-02 4:48
professionalJeremy Falcon18-Jul-02 4:48 
GeneralRe: CREATE DATABASE Pin
Mazdak18-Jul-02 19:18
Mazdak18-Jul-02 19:18 
GeneralFirst letter from a record in SQL Pin
Robby18-Jul-02 3:25
Robby18-Jul-02 3:25 
QuestionWhy does it have to be so complicated?? Pin
Anonymous17-Jul-02 13:02
Anonymous17-Jul-02 13:02 
MySQL Has the following core functions:
connect(), query(), store_result(), fetch_[row, feild]() num_rows(), num fields(),
escape_string(), and close()
There are others, but those are the most used.

Data returned is all characters, and and you get to the data by:
row=fetch_row(query_result);
and row[N] = field N, it's that simple!

Is there anything that simple for ADO or ODBC? I'm trying to port a MySQL app to SQL Server, and having a hard time finding anything that simple. My real concern is handling user-defined queries. In MySQL it was as easy as:
con=connect();
query(con, user_sql);
result=store_restult(con);
feilds=num_fields(result);
while (row=fetch_row(result)){
for (f=0; f
GeneralGuide, idea about interacting with remote SQL Pin
tongc17-Jul-02 4:36
tongc17-Jul-02 4:36 
GeneralInstalling SQL Server Pin
Mazdak16-Jul-02 5:34
Mazdak16-Jul-02 5:34 
GeneralRe: Installing SQL Server Pin
Richard Deeming16-Jul-02 5:50
mveRichard Deeming16-Jul-02 5:50 
GeneralRe: Installing SQL Server Pin
Mazdak16-Jul-02 9:22
Mazdak16-Jul-02 9:22 
GeneralADO Losing Changes with GetChunk/AppendChunk Pin
Blade[DMS]15-Jul-02 1:31
Blade[DMS]15-Jul-02 1:31 
GeneralGood Database for News Articles Pin
mrhsean14-Jul-02 5:28
mrhsean14-Jul-02 5:28 
GeneralRe: Good Database for News Articles Pin
Paul Ingles20-Jul-02 16:19
Paul Ingles20-Jul-02 16:19 
GeneralUpdating a value in a Recordset using Find Pin
Mr. Bill12-Jul-02 11:38
Mr. Bill12-Jul-02 11:38 
GeneralRe: Updating a value in a Recordset using Find Pin
Carlos Antollini12-Jul-02 11:58
Carlos Antollini12-Jul-02 11:58 
GeneralRe: Updating a value in a Recordset using Find Pin
Mr. Bill12-Jul-02 12:01
Mr. Bill12-Jul-02 12:01 
GeneralRe: Updating a value in a Recordset using Find Pin
Mr. Bill12-Jul-02 12:06
Mr. Bill12-Jul-02 12:06 
GeneralRe: Updating a value in a Recordset using Find Pin
Carlos Antollini12-Jul-02 12:22
Carlos Antollini12-Jul-02 12:22 
GeneralRe: Updating a value in a Recordset using Find Pin
Mr. Bill12-Jul-02 12:23
Mr. Bill12-Jul-02 12:23 
GeneralObject Oriented DB Pin
Joshua Nussbaum9-Jul-02 18:39
Joshua Nussbaum9-Jul-02 18:39 
GeneralUpdating a database from a dataset Pin
Alexandru Savescu8-Jul-02 22:19
Alexandru Savescu8-Jul-02 22:19 
GeneralRe: Updating a database from a dataset Pin
Mazdak9-Jul-02 8:59
Mazdak9-Jul-02 8:59 
GeneralRe: Updating a database from a dataset Pin
Alexandru Savescu9-Jul-02 9:08
Alexandru Savescu9-Jul-02 9:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.