Welcome To The Home Of The Visual FoxPro Experts  
home. signup. forum. archives. search. google. articles. downloads. faq. members. weblogs. sponsors. rss.
 From: Blair Lawrence
  Where is Blair Lawrence?
 London
 Canada
 Blair Lawrence
 To: shi yangyang
  Where is shi yangyang?
 singapore
 Singapore
 shi yangyang
 Tags
Subject: RE: Excel to VFP to SQL Task
Thread ID: 225062 Message ID: 243915 # Views: 30 # Ratings: 0
Version: Visual FoxPro 9 Category: Databases, Tables and SQL Server
Date: Friday, October 23, 2009 2:59:29 PM         
   


This is what I have so far...and yes it works importing the excel table to vfp.

[code]SET TALK OFF
LOCAL lcXLBook AS STRING, lnSQLHand AS INTEGER, ;
lcSQLCmd AS STRING, lnSuccess AS INTEGER, ;
lcConnstr AS STRING
CLEAR

lcXLBook = [C:\GLJEascTest.xls]

lcConnstr = [Driver=] + ;
[{Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)};] + ;
[DBQ=] + lcXLBook

IF !FILE( lcXLBook )
? [Excel file not found]
RETURN .F.
ENDIF
*-- Attempt a connection to the .XLS WorkBook.
*-- NOTE: If the specified workbook is not found,
*-- it will be created by this driver! You cannot rely on a
*-- connection failure - it will never fail. Ergo, success
*-- is not checked here. Used FILE() instead.
lnSQLHand = SQLSTRINGCONNECT( )

*-- Connect successful if we are here. Extract data...
lcSQLCmd = [SELECT * FROM "SHEET1$"]


lnSuccess = SQLEXEC( lnSQLHand, lcSQLCmd, [xlResults] )
? [SQL Cmd Success:], IIF( lnSuccess > 0, 'Good!', 'Failed' )
IF lnSuccess < 0
LOCAL ARRAY laErr[1]
AERROR( laErr )
? laErr(3)
SQLDISCONNECT( lnSQLHand )
RETURN .F.
ENDIF


*-- Show the results
SELECT xlResults
BROWSE NOWAIT
SQLDISCONNECT( lnSQLHand )[/code]
> >
> > The connection to excel is unfortunately manual when I tried coding the connection it always failed.
> >
> > The other problem I have now is parsing the first excel column to remove the hyphens. It is currently loading into vfp as a memo field.
> >
> > I found this but I am not sure where to place the code :SEMyString = Replace(MyString, "-","")
> > ( all this code is running from a command button click event)
>
> hi Blair Lawrence
>
> I have the same problem as u..
> It is currently loading into vfp as a memo field.
> Do you know how do i change it to normal table field?
>
>
> Thank you!


Hi Shi,

I was unsuccessful with this strategy. My only way achieve a solution for the task at hand was to bypass VFP and create an excel program that connected to our MS SQL server and upload the data using a click event with VB.NET.

I hope you find a solution.

Good Luck!


Cheers,

Blair



COMPLETE THREAD
Excel to VFP to SQL Task Posted by Blair Lawrence @ 4/17/2009 9:13:43 PM
RE: Excel to VFP to SQL Task Posted by tushar @ 4/18/2009 7:16:39 AM
RE: Excel to VFP to SQL Task Posted by Blair Lawrence @ 5/4/2009 3:12:26 PM
RE: Excel to VFP to SQL Task Posted by shi yangyang @ 10/23/2009 8:27:53 AM
RE: Excel to VFP to SQL Task Posted by Blair Lawrence @ 10/23/2009 2:59:29 PM
RE: Excel to VFP to SQL Task Posted by shi yangyang @ 10/26/2009 2:00:04 AM