Stephen,

Is ODBC the only way to connect to the sql server or is there any other 
options.

I am also new and I have installed sql server 2005 express edition.

for odbc do I have to install a sql server odbc driver ???

Plus I read there are two ways to go views & sql pasthrough. Which one would 
be easy for a desktop application. No web.


Ajoy Khaund
Neamati Road
Near Bhogdoi Bridge
Jorhat 785001-21
Assam, India

Tel: 91-376-2351288
Cell: 91-94350-92287
Mail: [email protected]
Mail: [email protected]

"Walking on water and developing software from a specification are easy if
both are frozen."
- Edward  V. Berard, "Life-Cycle Approaches"

--------------------------------------------------
From: "Stephen Russell" <[email protected]>
Sent: Thursday, January 15, 2009 8:09 PM
To: <[email protected]>
Subject: Re: VFP and SQLServer 2005 Std Edition

> On Thu, Jan 15, 2009 at 6:53 AM, Rafael Copquin <[email protected]> 
> wrote:
>> As said in a previous post, I am beginning to experiment with SQLServer,
>> using SQLServer 2005 Std Ed. on an XP Prof SP2 machine.
>>
>> I managed to build my first edit form, using an ODBC connection.
>>
>> I created an ODBC connection called MYCONNECTION, which uses the database
>> called TEST, and a table called CUSTOMERS.
>>
>> if I use:
>>
>> cConnString = 'MYCONNECTION'
>>
>> and
>>
>> nHandle = SQLConnect(cConnString)
>>
>> the connection is succesful
>>
>> If instead I use:
>>
>> cConnString='Provider=SQLNCLI.1;Integrated Security=SSPI;Persist Security
>> Info=False;Initial Catalog=test;Data   Source=RAFAELPC\SQLEXPRESS'
>>
>> I have to use:
>>
>> nHandle = SQLStringConnect(cConnString)
>>
>> This opens a dialog forcing me to choose the MYCONNECTION ODBC source, 
>> and
>> then the connection succeeds.
>>
>> Questions:
>>
>> 1) why does the above dialog appear and how can I get rid of it?
>> 2) why does sqlconnect not work with the second connection string (the 
>> long
>> one)?
>>
>> Can anyone give me the answers?
> ------------------------
>
> You said 2005?  Your Driver statement doesn't look right.  Try either
> versions of text for your conn string:
>
> SQL Native Client 9.0 ODBC Driver
> Type:    ODBC Driver
> Usage:  Driver={SQL Native Client}
> Manufacturer:  Microsoft
>
> Standard security
> Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;
> Uid=myUsername;Pwd=myPassword;
>
> Are you using SQL Server 2005 Express? Don't miss the server name
> syntax Servername\SQLEXPRESS where you substitute Servername with the
> name of the computer where the SQL Server 2005 Express installation
> resides.
>
> Trusted Connection
> Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;
> Trusted_Connection=yes;
>
> HTH
>
> from <http://www.connectionstrings.com/sql-server-2005#109>
>
>
>
> -- 
> Stephen Russell
> Sr. Production Systems Programmer
> First Horizon Bank
> Memphis TN
>
> 901.246-0159
>
>
[excessive quoting removed by server]

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/43029f202a2e456c8afb06f4535a8...@compaq
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to