Mark, It looks like the log is telling (from what I can tell) that a record is written...but there is no data being written in my table. I manually added 7 records to the table, so I am assuming that the..
VTable_AddRecord... PARAM: tblRef = "135884248" return res = 8 ...is telling me record number 8 has been added? I am looking at the file in Valentina Studio and refreshed, closed, etc and it is not added. Warren Valentina_DebugLevel... PARAM: inLevel = "kLogParams" return VDatabase_Constructor... PARAM: inEnumStorageType = "0" return revDb = 48040944 VDatabase_Open... PARAM: dbRef = "48040944" PARAM: inStrPath = "C:/Users/Warren/Desktop/NewSpinner/Database/Spinnables.vdb" return VDatabase_Table... PARAM: dbRef = "48040944" PARAM: inIntIndexOrStrName = "Spinnables" return res = 135884248 VTable_SetBlank... PARAM: tblRef = "135884248" return VTable_Field... PARAM: tblRef = "135884248" PARAM: inIntIndexOrStrName = "Keyword1" return res = 135815896 VTable_Field... PARAM: tblRef = "135884248" PARAM: inIntIndexOrStrName = "Term1" return res = 135816128 VField_Value... PARAM: fldRef = "135815896" PARAM: inStrValue = "999" return VField_Value... PARAM: fldRef = "135816128" PARAM: inStrValue = "999" return VTable_AddRecord... PARAM: tblRef = "135884248" return res = 8 On Tue, Sep 21, 2010 at 5:48 PM, Mark Schonewille < [email protected]> wrote: > Hi Warren, > > I don't see any obvious mistakes in your script. Perhaps you need to use a > variable instead of a value. > > put "test" into myVar > get VField_Value( f1, myVar ) > > You might want to post the script that reads the record from the database. > Are you sure that you closed the database when you accessed it previously? > Is the database in a writable location? > > -- > Best regards, > > Mark Schonewille > > Economy-x-Talk Consulting and Software Engineering > Homepage: http://economy-x-talk.com > Twitter: http://twitter.com/xtalkprogrammer > KvK: 50277553 > > Download the Installer Maker plugin for Runtime Revolution at > http://qurl.tk/ce > Create installers for Mac and Windows on *every* Rev-compatible platform. > No additional software needed. > > On 22 sep 2010, at 00:05, Warren Kuhl wrote: > > > I just purchased Valentina ADK and am trying what I thought was a simple > > example but can't seem to grasp the concept. Hopefully someone can help > who > > is familar with Valentina. I am sure Valentina is a great product...but > the > > support and the documentation for the RunRev version leaves a lot to be > > desired. > > > > On the card, I have the following... > > > > on OpenCard > > get Valentina_Init( 10 * 1024 * 1024,"","(serial number)","" ) > > end OpenCard > > > > on CloseCard > > get Valentina_ShutDown > > end CloseCard > > > > I created a button to just try to write a record to a database that > already > > exists. I just can't get any data written to the database. Is there > > anything obvious I am missing? I am getting numeric values in the > variables > > mDatabase, tblSpin, and f1 and f2 so I assume something is working...just > no > > data in my table. Thanks for any help! > > > > on mouseUp > > > > put VDatabase_Constructor() into mDatabase > > get the effective filename of this stack > > set the itemDel to slash > > put the (item 1 to -2 of it) & slash & "Database/Spinnables.vdb" into > dbPath > > > > > > get VDatabase_Open( mDatabase, dbPath ) > > put VDatabase_Table( mDatabase, "Spinnables" ) into tblSpin > > > > get VTable_SetBlank(tblSpin) > > > > put VTable_Field( tblSpin, "Keyword1" ) into f1 > > put VTable_Field( tblSpin, "Term1" ) into f2 > > > > get VField_Value( f1, "test" ) > > get VField_Value( f2, "test" ) > > > > get VTable_AddRecord(tblSpin) > > > > end mouseUp > _______________________________________________ > use-revolution mailing list > [email protected] > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-revolution > _______________________________________________ use-revolution mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
