Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Upload to SQLServer
Message
De
04/12/2008 15:12:08
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
01365523
Message ID:
01365533
Vues:
19
>>Is it possible to use VFP code to upload data into a SQL Server Express table? Does anyone have a sample script to do this?
>>Thanks
>
>You can handle Express edition as you handle other editions "Standard, Enterprise, etc"
>There is NO difference between them in VFP point of view.
>You set a connection, do something (run a query to get result, insert/delete/update some data)
>
>So, if you know how to do this in other editions, you are fine with Express also.

Thanks Borislav.
Its a big assumption to suggest I know how to do it in other editions. Here is my attempt to connect and EXTRACT data. (I figure that if I can get it out then I can also put it in.)
lnHandle = sqlconnect("trpSurvey")
	
text to lcSQL textmerge noshow pretext 15
	select * 
	from userValidation
endtext	

if sqlexec(m.lnHandle,lcSQL,"crsImport",aCountInfo) < 0
	aerror(laError)
	messagebox(laError[1,2])
endif

sqldisconnect(m.lnHandle)
select crsImport
browse
But I get an error that says userValidation is an invalid object name. It IS the name of the table and the connection is good. Is there another way to refer to the table?
Thanks
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform