Re: multi line Livecode field uploaded to MySQL

2019-02-15 Thread Ludovic THEBAULT via use-livecode
> Le 16 févr. 2019 à 07:59, Tim Selander via use-livecode > a écrit : > > I have a routine to take data from fields on a card and upload to a mysql > database. Has worked well for years, got the original script off the Livecode > learning site. > --- > # Construct SQL > put

multi line Livecode field uploaded to MySQL

2019-02-15 Thread Tim Selander via use-livecode
I have a routine to take data from fields on a card and upload to a mysql database. Has worked well for years, got the original script off the Livecode learning site. --- # Construct SQL put "INSERT INTO

Re: Need crash course in Dropbox library

2019-02-15 Thread pink via use-livecode
under the documentation for dropboxUpload, it states it shouldn't be used for files larger than 150MB, the video files will all be around 800MB I've been looking through the stack, but cannot find the answers I am looking for. SO I am still not clear how I should get my file into pData and

Re: Need crash course in Dropbox library

2019-02-15 Thread Mike Kerner via use-livecode
Hey, pink, thanks for the clarification. First of all, is there a reason why you are doing it this way instead of using dropboxUpload? If you use dropboxUpload you can do it all in one shot. Gerard's stack explains the process and how to use the various commands Doing it the way you are doing it,

Re: Need crash course in Dropbox library

2019-02-15 Thread pink via use-livecode
Unfortunately, looking at the other library isn't making things clearer... Let me get more specific, here are the main commands I'm trying to learn: dropboxUploadSessionStart pAccessToken, pData dropboxUploadSessionAppend pAccessToken, pSession, pOffset, pData dropboxUploadSessionFinish

Re: Standalone builder tells me that there is a stack ... already open and so on

2019-02-15 Thread Bob Sneidar via use-livecode
I just had an, "AHA!" moment. Bob S > On Feb 14, 2019, at 10:15 , Richard Gaskin via use-livecode > wrote: > > The example there is uses two paths that differ based on the Unix shortcut of > "~" for the user's home folder, e.g.: > > /home/matthias/workfolder/somestack.livecode > >

Re: Need crash course in Dropbox library

2019-02-15 Thread Mike Kerner via use-livecode
Then I would suggest Grab Gerard's LC dropbox v2 goodies that are at https://github.com/macMikey/dropboxapi_v2 The LC dropbox library was "inspired by" Gerard's library. The command names are different, but I'm pretty sure it's one-to-one and I'm pretty sure the syntax is identical. Where it