Re: OT: What Is Wrong at play.google.com/Android Apps?

2021-07-26 Thread Sannyasin Brahmanathaswami via use-livecode
It on Firefox! Google Chrome lets me in… problem solved… On 7/25/21, 4:26 PM, "use-livecode" wrote: What is wrong with: (My developers ID is, for this email, has been blocked out) https://play.google.com/console/u/0/developers/#/app-list#AppListPlace ? I will be logged into

Re: httpd library

2021-07-26 Thread Andre Garzia via use-livecode
Bernard, Thanks for the kind words my friend. :-) I can barely believe it has been 15 years already, it feels like yesterday. Don’t worry about the database library, I’m just going to relicense it as MIT which will make it free to use for all use cases. I’m no longer providing support or

Also looking for MSSQL integration person

2021-07-26 Thread Skip Kimpel via use-livecode
I have MSSQL data flowing into my project but two data input fields are coming through as "?" instead of the actual text. WIlling to pay someone to help me figure this out. Please contact me directly at s...@magicgate.com Thank you! SKIP ___

Re: httpd library

2021-07-26 Thread doc hawk via use-livecode
Andre added, > I love when you folks call me a young man :-) I’ve been 41 for a while now > and no one asks for my ID when I buy a beer anymore. That’s why I hang around the knights of columbus—it’s the only place I get called “young man” any more . . . :)

Re: httpd library

2021-07-26 Thread Tom Glod via use-livecode
I just got a haircut, was hoping someone would call me a young man . but it didn't happen. Next goes the beard. lolz On Mon, Jul 26, 2021 at 3:58 PM doc hawk via use-livecode < use-livecode@lists.runrev.com> wrote: > > Andre added, > > > > I love when you folks call me a young man :-) I’ve

Re: Also looking for MSSQL integration person

2021-07-26 Thread Paul Dupuis via use-livecode
I can't help you figure it out, but text coming through as questions marks is almost always and text encoding issue. For example, if the text is stored in the mySQL database as UTF8, then after fetching it in LiveCode nd before placing it in a field, you need to textDecode(,"UTF8") (see the

Re: Also looking for MSSQL integration person

2021-07-26 Thread Bob Sneidar via use-livecode
If it helps, I use InnoDB and my encoding is utf8_general_ci. That's probably not good for unicode though. I don't localize my app, it's just for use here at work. Bob S > On Jul 26, 2021, at 13:59 , Paul Dupuis via use-livecode > wrote: > > I can't help you figure it out, but text coming

Re: Also looking for MSSQL integration person

2021-07-26 Thread Skip Kimpel via use-livecode
I think it is how I have everything setup something is getting lost in translation. Keep in mind it is only two fields I am getting the "?" results back instead of the text contained inside. The MSSQL data types of those two fields are: nvarchar(max). Interestingly enough, I have other

Re: Also looking for MSSQL integration person

2021-07-26 Thread Skip Kimpel via use-livecode
Actually, just looked and another field that is nchar(10) is also receiving the "?" result so it has nothing to do with the "max" parameter. SKIP On Mon, Jul 26, 2021 at 6:54 PM Skip Kimpel wrote: > I think it is how I have everything setup something is getting lost in > translation.

what is the point of aps.cer?

2021-07-26 Thread Mike Kerner via use-livecode
in the new APNS regime, you have to create an aps.cer file, but it does not seem like it is ever used in APNS. You use your .k8 file to do the work, and i don't see the aps.cer file being bundled or otherwise accessed, afterwards. you don't compile your app with it, either. -- On the first day,

RE: httpd library

2021-07-26 Thread Erik Beugelaar via use-livecode
Happy to see there are more talented programmers who are not greedy... Thumbs up to you. Erik -Original Message- From: use-livecode On Behalf Of Andre Garzia via use-livecode Sent: maandag 26 juli 2021 12:59 To: How to use LiveCode Cc: Andre Garzia Subject: Re: httpd library

Re: httpd library

2021-07-26 Thread Bob Sneidar via use-livecode
Just hang out at American airports. I'm 65 and they ask ME for ID. :-) Bob S > On Jul 25, 2021, at 14:30 , Andre Garzia via use-livecode > wrote: > > I love when you folks call me a young man :-) I’ve been 41 for a while now > and no one asks for my ID when I buy a beer anymore.

Off topic: mySQL collations

2021-07-26 Thread Tiemo via use-livecode
Hello, I am testing to migrate a mySQL database from 5.7 to 8. I am using PHP code between my LiveCode program and the db. This PHP code is pretty old and was actually written by somebody else. Since mySQL 8 deprecated some charactersets and collations, the following query in my PHP is not

Looking to hire API (SOAP) expert (work for hire)

2021-07-26 Thread Skip Kimpel via use-livecode
I have a project on my plate that needs some assistance with an API integration. Need some help kicking it off and getting everything connected... from there on out, I can make the "calls" but need the initial assistance. Anybody interested in taking this on? Obviously I will pay you for your

Re: Also looking for MSSQL integration person

2021-07-26 Thread Bob Sneidar via use-livecode
MAX is the argument for maximum VARCHAR size. SQL Server NVARCHAR data type is used to store variable-length, Unicode string data. MSSQL has a try_cast snf cast function. Try using that to have the SQL server convert the data into VARCHAR and see what you get. Bob S > On Jul 26, 2021, at

Re: Also looking for MSSQL integration person

2021-07-26 Thread Bob Sneidar via use-livecode
> MSSQL has a try_cast snf cast function. That should read MSSQL has a try_cast AND cast function. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Also looking for MSSQL integration person

2021-07-26 Thread Skip Kimpel via use-livecode
try_cast worked!!! I converted those fields, using that technique, into a varchar and BAM! Thank you, Bob! SKIP On Mon, Jul 26, 2021 at 7:29 PM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > > MSSQL has a try_cast snf cast function. > > That should read MSSQL has a