Hi JARO,
It still crashed at:
Patients->DBAPPEND()
Search found 17 matches: adrrdd
Searched query: adrrdd
- Wed May 13, 2009 6:36 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
- Wed May 13, 2009 6:30 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
SORRY
TO ADD RECORDS
function Main()
USE Fusion VIA "ADORDD" TABLE "patients" MYSQL FROM "127.0.0.1" USER "fusion" PASSWORD "fusion" ALIAS "Patients"
go bottom
ncode:=Patients->code +1//primary key, IF YOU HAVE ANY PROBLEM USE DATABASE SORT BY PRIMARY KEY
Patients->DBAPPEND())
Patients ...
TO ADD RECORDS
function Main()
USE Fusion VIA "ADORDD" TABLE "patients" MYSQL FROM "127.0.0.1" USER "fusion" PASSWORD "fusion" ALIAS "Patients"
go bottom
ncode:=Patients->code +1//primary key, IF YOU HAVE ANY PROBLEM USE DATABASE SORT BY PRIMARY KEY
Patients->DBAPPEND())
Patients ...
- Wed May 13, 2009 6:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Jeff (sorry my english is very bad)
So add record
First, if you database contain a primary key. you have update this field
Your example
suppose that primary key name is "CODE"
#include "FiveWin.ch"
#include "ADORDD.ch"
REQUEST ADORDD
Function Main()
USE Fusion VIA "ADORDD" TABLE "patients" MYSQL ...
So add record
First, if you database contain a primary key. you have update this field
Your example
suppose that primary key name is "CODE"
#include "FiveWin.ch"
#include "ADORDD.ch"
REQUEST ADORDD
Function Main()
USE Fusion VIA "ADORDD" TABLE "patients" MYSQL ...
- Wed May 13, 2009 5:04 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
I tried that as well and also got that error.
- Wed May 13, 2009 4:59 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Thanks Jeff,
I found the function ADO_APPEND() in ADORDD.PRG but I don't understand why it cannot use. It shows the error "Unresolved external '_HB_FUN_ADO_APPEND'".
Regards,
Dutch
I found the function ADO_APPEND() in ADORDD.PRG but I don't understand why it cannot use. It shows the error "Unresolved external '_HB_FUN_ADO_APPEND'".
Regards,
Dutch
- Wed May 13, 2009 12:43 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Hi Dutch,
This is what I did:
#include "FiveWin.ch"#include "ADORDD.ch" REQUEST ADORDDFunction Main() USE Fusion VIA "ADORDD" TABLE "patients" MYSQL FROM "127.0.0.1" USER "fusion" PASSWORD "fusion" ALIAS "Patients" go top Patients->Last := "xxxxxxxxxxx" BROWSE() USEreturn nil
If ...
This is what I did:
#include "FiveWin.ch"#include "ADORDD.ch" REQUEST ADORDDFunction Main() USE Fusion VIA "ADORDD" TABLE "patients" MYSQL FROM "127.0.0.1" USER "fusion" PASSWORD "fusion" ALIAS "Patients" go top Patients->Last := "xxxxxxxxxxx" BROWSE() USEreturn nil
If ...
- Wed May 13, 2009 8:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Dear Jeff,
How do you edit it?
Thanks,
Dutch
How do you edit it?
Thanks,
Dutch
- Wed May 13, 2009 12:59 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Almost there...
I am now able to edit the data (I removed both odbc drivers then installed just the 5.1 driver to try an clean things up a bit)
I still get errors when I try to append a record.
Anyone know how to get around this?
I am now able to edit the data (I removed both odbc drivers then installed just the 5.1 driver to try an clean things up a bit)
I still get errors when I try to append a record.
Anyone know how to get around this?
- Tue May 12, 2009 11:54 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
I tried installing the 5.1 version of the MySql ODBC driver and made the change to Adordd.prg --- still errors every time I try to add or modify ![Crying or Very sad :cry:](./images/smilies/icon_cry.gif)
![Crying or Very sad :cry:](./images/smilies/icon_cry.gif)
- Tue May 12, 2009 9:59 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
I do not use ADORDD normally. I use ADO directly.
But for this post I tested with ADORDD of xharbour.
I made only one small change in the adordd.prg. Changed the driver from 3.51 to 5.1.
ADORDD is working fine for me. I am able to add rows and modify rows.
Unless opened in exclusive mode, we should ...
But for this post I tested with ADORDD of xharbour.
I made only one small change in the adordd.prg. Changed the driver from 3.51 to 5.1.
ADORDD is working fine for me. I am able to add rows and modify rows.
Unless opened in exclusive mode, we should ...
- Tue May 12, 2009 6:22 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Thanks Armando and Anserkk for you idea of using ADO directly, however, currently I would like to stick with the xbase style control over the database.
I really don't have the time to learn the ADO format
Does anyone know how to allow access to adding / modifying the data via an ADORDD connection?
I really don't have the time to learn the ADO format
![Sad :(](./images/smilies/icon_sad.gif)
Does anyone know how to allow access to adding / modifying the data via an ADORDD connection?
- Tue May 12, 2009 8:38 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
I can open MySql with ADORDD as Jeff example BUT cannot append or delete or modify record. It alway shows an error.
Anyone could help and example for these cases?
Regards,
Dutch
Anyone could help and example for these cases?
Regards,
Dutch
- Tue May 12, 2009 5:08 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Dear Mr.Jeff,
I can browse the database but I get the same error when I try to add/modify the data.
If you have VARCHAR columns in the Table and if you try to add a Character type data without an Rtrim/Alltrim, then you may get error. That is just one of the reason and it is a very common mistake ...
I can browse the database but I get the same error when I try to add/modify the data.
If you have VARCHAR columns in the Table and if you try to add a Character type data without an Rtrim/Alltrim, then you may get error. That is just one of the reason and it is a very common mistake ...
- Tue May 12, 2009 2:10 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
I spoke too soon ... I can browse the database but I get the same error when I try to add/modify the data.
Any ideas as to where I am going wrong?
Any ideas as to where I am going wrong?
- Tue May 12, 2009 2:05 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MySql and AdoRdd
- Replies: 19
- Views: 6201
Re: MySql and AdrRdd
Never Mind.
I did not have records in the database
It works now. My very first successful MySql connection![Very Happy :D](./images/smilies/icon_biggrin.gif)
I did not have records in the database
![Embarassed :oops:](./images/smilies/icon_redface.gif)
It works now. My very first successful MySql connection
![Very Happy :D](./images/smilies/icon_biggrin.gif)