Search found 29 matches

by Lonnie
Wed Nov 18, 2020 8:19 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using a text field with date formated content in a WHERE clause of a SELECT statement
Replies: 11
Views: 6836

Re: Using a text field with date formated content in a WHERE clause of a SELECT statement

Hi AxWald, This is amazing ... what a lesson. Thank you so much for all the information and taking the time to put it all out. I'm going to try all of this out. I usually grab my data set, and store it in a custom Property of the card/ stack. Then I make a copy of it, and display an ordered/ formatt...
by Lonnie
Tue Nov 17, 2020 10:40 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using a text field with date formated content in a WHERE clause of a SELECT statement
Replies: 11
Views: 6836

Re: Using a text field with date formated content in a WHERE clause of a SELECT statement

Thanks again gang, AxWald: I still have the error handler code, I moved it down and commented it out so more of the code I used and tried is visible. I wanted to show how the var tRecords was populated ... or not. At this point I'm not getting an error but tRecords is blank when I say it doesn't wor...
by Lonnie
Tue Nov 17, 2020 7:41 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using a text field with date formated content in a WHERE clause of a SELECT statement
Replies: 11
Views: 6836

Re: Using a text field with date formated content in a WHERE clause of a SELECT statement

Ok ... I have a feeling your going to tell me how to copy and paste the results of an -- answer tSQLput -- command into the forum but until you do the best I could come up with is screen shots. If you look on the right side you can see most of the code that generated the SQL statement. I had to recr...
by Lonnie
Mon Nov 16, 2020 10:43 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using a text field with date formated content in a WHERE clause of a SELECT statement
Replies: 11
Views: 6836

Re: Using a text field with date formated content in a WHERE clause of a SELECT statement

Hi All, Thanks for your help. bangkok ... sorry for the confusion, I'll try to reword it a simpler way. Craig ... thanks ... I found the code button ... I'll have to check out the other buttons up there!! AxWald ... I hadn't run across the format() feature, it looks like a powerful tool. Here's, hop...
by Lonnie
Sat Nov 14, 2020 1:59 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using a text field with date formated content in a WHERE clause of a SELECT statement
Replies: 11
Views: 6836

Using a text field with date formated content in a WHERE clause of a SELECT statement

Hi everyone, This is sort of related to the topic submitted by lemodizon's "How to search between two dates in LiveCode" on Nov. 12,2020. I'm trying to create the SQLite SELECT statement below, to include a text field with date formatted content in the WHERE clause. Using the suggestions by Xero, ev...
by Lonnie
Fri Oct 02, 2020 7:38 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Escape Clauses
Replies: 6
Views: 3097

Re: Escape Clauses

Thanks gang, Ended up using placeholders so whatever was in the trn.team1name field would go into the standings.teamname. ------------------------------------------------------------------------------------------ ttTeam1 is temporary text memvar populated in the outside repeat loop along with the ga...
by Lonnie
Thu Oct 01, 2020 9:19 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Escape Clauses
Replies: 6
Views: 3097

Re: Escape Clauses

The actual project is a softball tournament manager app. In this section I'm using game results to calculate each team's tournament standings. Once scores are posted I use a repeat loop to go through a list of games and the results.with the fields .. team1name, runs1, team2name, runs2. Within this l...
by Lonnie
Thu Oct 01, 2020 8:41 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Escape Clauses
Replies: 6
Views: 3097

Escape Clauses

Hi everyone, I had the issue of hyphens in some field data that was causing issues my app. I found the code below to resolve this as well as quotes, returns and tabs and a few others but at the bottom is my attempt to escape a set of parentheses. Obviously, it didn't work. Any way to escape a set of...
by Lonnie
Mon Sep 14, 2020 11:51 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Single quote/double quote syntax issue with SQLite
Replies: 8
Views: 8343

Re: Single quote/double quote syntax issue with SQLite

Hi Gang, Still fiddling with this ... Trying to find the correct syntax to use for the SQL command "INSERT INTO" to add an array of 26 rows each containing 19 fields. Here's what I've tried and the best I've been able to accomplish is getting 1 row or record in the table properly populated ... set t...
by Lonnie
Fri Sep 11, 2020 7:56 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Single quote/double quote syntax issue with SQLite
Replies: 8
Views: 8343

Re: Single quote/double quote syntax issue with SQLite

I was able to enter multiple records of data into a table called standings, by inserting 1 line of a text file using: revExecuteSQL gConID, "INSERT INTO standings VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16,:17,:18,:19)","theLine" theLine contains a comma delimited list of 19 value...
by Lonnie
Sun Sep 06, 2020 8:54 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Single quote/double quote syntax issue with SQLite
Replies: 8
Views: 8343

Re: Single quote/double quote syntax issue with SQLite

Thank you soooooooooo much Stam. This is so helpful! In this app each time a round of games is played and scores are posted this table has to be repopulated. My first thought was to DROP or Delete and recreate the table. Then I decided to delete the contents of the table. Of all the methods you've d...
by Lonnie
Sun Sep 06, 2020 1:08 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Single quote/double quote syntax issue with SQLite
Replies: 8
Views: 8343

Single quote/double quote syntax issue with SQLite

Hi Everyone. A newbee here ... In my softball program I'm writing I'm having an issue appending records to a SQLiite database table when the field data contains a single quote ... like Tom's Team or Kaua'i Sluggers. All data without single quotes appends properly. The only way I've been able to get ...
by Lonnie
Sat Jul 04, 2020 7:37 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Calling a Variable in an SQLite Select command
Replies: 3
Views: 2171

Re: Calling a Variable in an SQLite Select command

I must fess up ... Klaus you are absolutely correct my code with the 2 "WHERE"'s didn't work!! Here's the code that actually works ... put "SELECT id, orgs_id, teams_id, events_id, sets_id, trn_id," && \ "eventno, setno, teamno, teamname, division, teamid, bracket," && \ "pool, rank, wins, losses, t...
by Lonnie
Fri Jul 03, 2020 9:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Calling a Variable in an SQLite Select command
Replies: 3
Views: 2171

Re: Calling a Variable in an SQLite Select command

I got it ... the double filter: put "SELECT id, orgs_id, team_id, event_id, eventno, set, teamno, team, division, bracket," && \ "pool. rank, wins, lossed, tie, totdiff, oppscore, totscore" && \ "FROM tteams WHERE orgs_id = " && gOrgs_Id && " AND WHERE events_id = " && gEvents_Id && \ "ORDER BY even...
by Lonnie
Fri Jul 03, 2020 4:00 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Calling a Variable in an SQLite Select command
Replies: 3
Views: 2171

Calling a Variable in an SQLite Select command

Hi everyone, Thanks in advance for your help! A relative newbee here building an app for my senior softball league. I have an SQLite database with 4 tables I want to link with relationships and issue filter statements(plus a few other tables): orgs(organizations), users, events and teams. The first ...

Go to advanced search