I want to execute livecode in linemode do it's job and then exit
I thought openstack would help me but I have been trying for a few days now and guess no luck.
Any hints or tips.
Search found 21 matches
- Tue May 28, 2013 7:50 pm
- Forum: Feature Proposals
- Topic: livecode commandline
- Replies: 1
- Views: 2231
- Tue May 28, 2013 7:41 pm
- Forum: Using Externals
- Topic: java and livecode can that we embedded
- Replies: 1
- Views: 7217
java and livecode can that we embedded
I have a simple question, join livecode an I have a bunch of java files (.java) and I want them to call include them in livecode. I can start a shell and call the procedure by the following command java -jar getprocess.jar -host param1 and so on. The problem I have with this Jar method is the callin...
- Mon Nov 19, 2012 7:40 pm
- Forum: Feature Proposals
- Topic: Execute an statemen ( eq procedure) on a database i
- Replies: 3
- Views: 3333
Re: Execute an statemen ( eq procedure) on a database i
Perhaps that is my problem. PHP scripting and URL call is not really my piece of cake. For one customer I'm not allowed to change the database (SAP BW on ORACLE). I have a readonly account and that is it. The other customer I have to set the context (user workspace) to retrieve any data at all. The ...
- Sat Nov 17, 2012 9:10 pm
- Forum: Feature Proposals
- Topic: Execute an statemen ( eq procedure) on a database i
- Replies: 3
- Views: 3333
Execute an statemen ( eq procedure) on a database i
It would be very nice if you could execute a procedure or function on a database
For example begin Procedure end
Revexecutesql would be perfect
It is in my opinion not nice livecode is not having this feature .
I can use a plugin be standard livecode would be mice
For example begin Procedure end
Revexecutesql would be perfect
It is in my opinion not nice livecode is not having this feature .
I can use a plugin be standard livecode would be mice
- Wed Nov 14, 2012 7:37 pm
- Forum: Databases
- Topic: ORACLE execute immediate / PLSQL
- Replies: 1
- Views: 4319
ORACLE execute immediate / PLSQL
I want to execute plsql package (is an procedure) and it doesn't return a value. I crashes LIVECODE completly. BUt the question is can this be done. This is what I try to do put "begin callvaluescustomer; end" into tsql revExecuteSQL databaseid, tsql Further I have to wait very long. The packing run...
- Thu Dec 29, 2011 11:13 am
- Forum: Using Externals
- Topic: Q: DGH cannot insert new records on ios
- Replies: 1
- Views: 4553
Re: Q: DGH cannot insert new records on ios
I had to redefine the enterkey to returnkey then a new row is added.
Still not perfect.
Still not perfect.
- Tue Dec 27, 2011 11:15 pm
- Forum: Using Externals
- Topic: Q: DGH cannot insert new records on ios
- Replies: 1
- Views: 4553
Q: DGH cannot insert new records on ios
I'm using DGH, for grid control, this works fine.
Expect i cannot add new rows, in the script section i clicked install add row, delete row and so on.
How do I. Manage adding an row in my IOS application.
Cheers, Dj
Expect i cannot add new rows, in the script section i clicked install add row, delete row and so on.
How do I. Manage adding an row in my IOS application.
Cheers, Dj
- Fri Dec 16, 2011 11:43 am
- Forum: iOS Deployment
- Topic: sqlite database Issue
- Replies: 4
- Views: 4178
- Thu Dec 08, 2011 10:41 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Deploy application with many modules
- Replies: 7
- Views: 7115
Re: Deploy application with many modules
this is the code i'm using to included my mainstack. on preopenstack if "InformationLibrary" is not among the lines of the stacksInUse then start using stack "InformationLibrary" nzi_preopenstack -- my personal preopenstack end if if "DatabaseLibrary" is not among the lines of the stacksInUse then s...
- Fri Dec 02, 2011 9:02 pm
- Forum: iOS Deployment
- Topic: Q:SQLIte on IOS, database not found (SOLVED)
- Replies: 7
- Views: 7246
Re: Q:SQLIte on IOS, database not found (SOLVED)
Klaus there is a difference that I forgot to check if a file exists. so I replaced the file everytime. dixie didn't include the copy part but the check exists part. so the fix for me was that I had all the right command's but not in the right order. to obvious perhaps :roll: By way the the next step...
- Wed Nov 30, 2011 9:00 pm
- Forum: iOS Deployment
- Topic: Q:SQLIte on IOS, database not found (SOLVED)
- Replies: 7
- Views: 7246
Re: Q:SQLIte on IOS, database not found (SOLVED)
dixie helped me thks. SOLUTION FOR ME set the defaultfolder to specialFolderPath("documents") if there is a file "shapdata.dbf" then put revOpenDatabase("sqlite", pathNdb,,,,,,) into gConID else put specialFolderPath("documents") & "/shapdata.dbf" into tMainStackPath put specialFolderPath("engine") ...
- Wed Nov 30, 2011 3:56 pm
- Forum: iOS Deployment
- Topic: Q:SQLIte on IOS, database not found (SOLVED)
- Replies: 7
- Views: 7246
Re: Q:SQLIte on IOS, database not found
on mouseUp try set the defaultfolder to specialFolderPath("documents") put "shapdata.dbf" into pathNdb put revOpenDatabase("sqlite", pathNdb,,,,,,) into gConID catch theError answer info "Problem Opening Database: " & pathNdb & " " & theError put 0 into gConID exit mouseup end try answer information...
- Sun Nov 27, 2011 5:45 pm
- Forum: iOS Deployment
- Topic: Q:SQLIte on IOS, database not found (SOLVED)
- Replies: 7
- Views: 7246
Re: Q:SQLIte on IOS, database not found
Brr niceit's working in the IOS simulator now, I see the data. But when I run the application on the ipad the datafield remain empty. I tried the statement with and without the ; both options are failing on the ipad. revebderr , database error no such table DJAN on mouseUp set the defaultfolder to s...
- Sat Nov 26, 2011 10:56 am
- Forum: iOS Deployment
- Topic: Q:SQLIte on IOS, database not found (SOLVED)
- Replies: 7
- Views: 7246
Re: Q:SQLIte on IOS, database not found
thx dixie i give it a try.
DJ
DJ
- Fri Nov 25, 2011 8:51 pm
- Forum: iOS Deployment
- Topic: Q:SQLIte on IOS, database not found (SOLVED)
- Replies: 7
- Views: 7246
Q:SQLIte on IOS, database not found (SOLVED)
I was working on a simple app with sqlite. The problem is when I browse the IOS file system on my ipad I can see the the database file is located in the documents direcotory I simplified the code : put specialFolderPath("documents") & "/shapdata.dbf" into tMainStackPath put specialFolderPath("engine...