hk-classes-discuss Mailing List for hk_classes
Status: Beta
Brought to you by:
knorr
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(4) |
Oct
(1) |
Nov
(5) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
(3) |
Mar
(6) |
Apr
|
May
(3) |
Jun
(4) |
Jul
(12) |
Aug
(6) |
Sep
(15) |
Oct
(8) |
Nov
(13) |
Dec
(26) |
2003 |
Jan
(17) |
Feb
(17) |
Mar
(2) |
Apr
(17) |
May
(4) |
Jun
(4) |
Jul
(14) |
Aug
(25) |
Sep
(11) |
Oct
(29) |
Nov
(12) |
Dec
(28) |
2004 |
Jan
(5) |
Feb
(13) |
Mar
(33) |
Apr
(19) |
May
(18) |
Jun
(42) |
Jul
(71) |
Aug
(43) |
Sep
(22) |
Oct
(37) |
Nov
(77) |
Dec
(53) |
2005 |
Jan
(40) |
Feb
(12) |
Mar
(51) |
Apr
(36) |
May
(14) |
Jun
(11) |
Jul
(29) |
Aug
(25) |
Sep
(28) |
Oct
(24) |
Nov
(22) |
Dec
(36) |
2006 |
Jan
(37) |
Feb
(45) |
Mar
(31) |
Apr
(28) |
May
(22) |
Jun
(29) |
Jul
(12) |
Aug
(9) |
Sep
(53) |
Oct
(30) |
Nov
(16) |
Dec
(17) |
2007 |
Jan
(46) |
Feb
(7) |
Mar
(8) |
Apr
(8) |
May
(8) |
Jun
(5) |
Jul
(10) |
Aug
(51) |
Sep
(11) |
Oct
(5) |
Nov
(4) |
Dec
(12) |
2008 |
Jan
(35) |
Feb
(6) |
Mar
(10) |
Apr
(4) |
May
(20) |
Jun
(2) |
Jul
(7) |
Aug
(3) |
Sep
(2) |
Oct
(3) |
Nov
(4) |
Dec
(3) |
2009 |
Jan
(1) |
Feb
(13) |
Mar
(7) |
Apr
|
May
(17) |
Jun
(12) |
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
|
2010 |
Jan
(15) |
Feb
|
Mar
(18) |
Apr
|
May
(6) |
Jun
(1) |
Jul
|
Aug
(6) |
Sep
(4) |
Oct
(10) |
Nov
(9) |
Dec
|
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
(9) |
Jun
(6) |
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(7) |
Mar
(2) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2016 |
Jan
|
Feb
(10) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: TomasiL <arc...@to...> - 2018-08-06 12:05:27
|
i hope these information about hk_classes installation are useful for someone An update version of hk_classes at this address: https://sourceforge.net/projects/knoda4/files/hk_classes/ useful for knoda4 and knoda5 Compiling hk_classes on Debian9 64 this error occurred: hk_class.cpp:600:17: note: 'std::ostream {aka std::basic_ostream<char>}' is not derived from 'const std::pair<_T1, _T2>' if (stream==NULL) return; ^ hk_class.cpp: In static member function 'static hk_string hk_class::show_filedialog(const hk_string&, enum_operationmode)': hk_class.cpp:702:38: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if (!tmpurl.directory().size()>0 ||tmpurl.filename().size()>0) ^ hk_class.cpp: In static member function 'static hk_string hk_class::show_directorydialog(const hk_string&)': hk_class.cpp:762:38: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if (!tmpurl.directory().size()>0 ||tmpurl.filename().size()>0) ^ Makefile:468: set di istruzioni per l'obiettivo "libhk_classes_la-hk_class.lo" non riuscito make[3]: *** [libhk_classes_la-hk_class.lo] Errore 1 make[3]: uscita dalla directory "/home/vlilo/Documenti/hk_classes-0.8.4/hk_classes" Makefile:837: set di istruzioni per l'obiettivo "all-recursive" non riuscito make[2]: *** [all-recursive] Errore 1 make[2]: uscita dalla directory "/home/vlilo/Documenti/hk_classes-0.8.4/hk_classes" Makefile:296: set di istruzioni per l'obiettivo "all-recursive" non riuscito make[1]: *** [all-recursive] Errore 1 make[1]: uscita dalla directory "/home/vlilo/Documenti/hk_classes-0.8.4" Makefile:225: set di istruzioni per l'obiettivo "all" non riuscito make: *** [all] Errore 2 Patrik Hanak (knoda4 e knoda5 developer) help me and i solved so: "I have got an experience with similar errors. They occured, when C++ compiler followed C++11 standard. Problem is that hk_classes library is NOT C++11 compliant. Solutions would be: 1. change configuration of C++ compiler to follow older standard, I think C++98 would be OK 2. refactor hk_classes sources to follow C++11 standard. I guess option 1 is faster for the moment." "I cannot help you without knowing details of Your installation (operating system, distribution (if Linux based OS), C++ compiler, version of C++ compiler). At the moment I can provide you with the comfiguration on my side: I use various Linux based distributions ( OpenSUSE 64-bit, Debian 32-bit) with GNU C++ compiler. Specific argument to configure script: > ./configure CXXFLAGS='-std=c++03 -O2' solved the issue." Thank you very much to Patrik Hanak ############################ configure: error: Could not link test program to Python. Maybe the main Python library has been installed in some non-standard library path. If so, pass it to configure, via the LDFLAGS environment variable, or use the --with-python-incdir and --with-python-libdir directices respectively. ============================================================================ ERROR! You probably have to install the development version of the Python package for your distribution. The exact name of this package varies among them. ============================================================================ i solved installing libfontconfig1-dev i hope these usefuls for someone best regard callimaco In italiano: il link sopra porta a una versione aggiornata delle hk_classes utile per installare le versioni più recenti di knoda: knoda4 e knoda5 Le versioni aggiornate di g++ non riescono a compilare le hk_classes ecco perché vanno aggiunti gli argomenti indicati al comando ./configure. Il secondo suggerimento indica un pacchetto che non sempre le installazioni di base del sistema includono. Knoda è un ottimo sistema per la gestione ed amministrazione dei database. L'unica vera alternativa ad Access in campo Linux. callimaco |
From: martin <ma...@mh...> - 2016-02-21 13:15:39
|
On 20/02/16 12:39, martin wrote: > On 19/02/16 20:41, Patrik Hanak wrote: >> Hello Martin ! >> >> Somehow I overlooked errors in mysql driver folder while working on >> 0.8.4 patch. >> To fix them, I have prepared mysql_driver_084.patch, you can find it at: >> https://sourceforge.net/projects/knoda4/files/hk_classes/ >> >> Just apply it to hk_classes-0.8.4 folder structure. >> >> Br >> >> Patrik >> >> >> 2016-02-17 17:35 GMT+01:00 martin <ma...@mh...>: >> >> On 17/02/16 08:33, Patrik Hanak wrote: >>> Hi All ! >>> >>> I prepared a patch to fix compilation errors in 0.8.3 version >>> and increased the version number to 0.8.4. >>> The patch and patched version can be found at: >>> https://sourceforge.net/projects/knoda4/files/hk_classes/ >>> >>> It worked well on OpenSUSE 13.2 64-bit and Debian 8 (Jessie) 32-bit >>> >>> Enjoy >>> >>> Br >>> >>> Patrik >>> >>> >>> ------------------------------------------------------------------------------ >>> Site24x7 APM Insight: Get Deep Visibility into Application Performance >>> APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month >>> Monitor end-to-end web transactions and take corrective actions now >>> Troubleshoot faster and improve end-user experience. Signup Now! >>> http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 >>> >>> >>> _______________________________________________ >>> Hk-classes-discuss mailing list >>> Hk-...@li... >>> <mailto:Hk-...@li...> >>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> I have just run it on LinuxMint lmde2 (jessie 64) and I attach >> the new errors list. >> >> Many of the file errors *.ioT have moved and the bulk are no >> longer in hk_dbaseclasses >> >> We are definitely getting closer! >> >> I will go away and try and understand your patch and see whether >> I can improve it at all. >> >> Thanks for your help. >> >> martin welsh >> >> >> ------------------------------------------------------------------------------ >> Site24x7 APM Insight: Get Deep Visibility into Application >> Performance >> APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month >> Monitor end-to-end web transactions and take corrective actions now >> Troubleshoot faster and improve end-user experience. Signup Now! >> http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> <mailto:Hk-...@li...> >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> >> >> >> >> ------------------------------------------------------------------------------ >> Site24x7 APM Insight: Get Deep Visibility into Application Performance >> APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month >> Monitor end-to-end web transactions and take corrective actions now >> Troubleshoot faster and improve end-user experience. Signup Now! >> http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 >> >> >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > I look forward to giving them a try. > Will keep you posted on the outcome. > > martin > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss mysql_driver_084.patch gives a clean error free compile. Over the next week or two I will endeavour to produce a .deb package and then go on with getting CMake to work. martin |
From: martin <ma...@mh...> - 2016-02-20 12:54:22
|
On 19/02/16 20:41, Patrik Hanak wrote: > Hello Martin ! > > Somehow I overlooked errors in mysql driver folder while working on > 0.8.4 patch. > To fix them, I have prepared mysql_driver_084.patch, you can find it at: > https://sourceforge.net/projects/knoda4/files/hk_classes/ > > Just apply it to hk_classes-0.8.4 folder structure. > > Br > > Patrik > > > 2016-02-17 17:35 GMT+01:00 martin <ma...@mh... > <mailto:ma...@mh...>>: > > On 17/02/16 08:33, Patrik Hanak wrote: >> Hi All ! >> >> I prepared a patch to fix compilation errors in 0.8.3 version and >> increased the version number to 0.8.4. >> The patch and patched version can be found at: >> https://sourceforge.net/projects/knoda4/files/hk_classes/ >> >> It worked well on OpenSUSE 13.2 64-bit and Debian 8 (Jessie) 32-bit >> >> Enjoy >> >> Br >> >> Patrik >> >> >> ------------------------------------------------------------------------------ >> Site24x7 APM Insight: Get Deep Visibility into Application Performance >> APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month >> Monitor end-to-end web transactions and take corrective actions now >> Troubleshoot faster and improve end-user experience. Signup Now! >> http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 >> >> >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> <mailto:Hk-...@li...> >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > I have just run it on LinuxMint lmde2 (jessie 64) and I attach the > new errors list. > > Many of the file errors *.ioT have moved and the bulk are no > longer in hk_dbaseclasses > > We are definitely getting closer! > > I will go away and try and understand your patch and see whether I > can improve it at all. > > Thanks for your help. > > martin welsh > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > <mailto:Hk-...@li...> > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss I look forward to giving them a try. Will keep you posted on the outcome. martin |
From: Patrik H. <ha...@us...> - 2016-02-19 20:41:46
|
Hello Martin ! Somehow I overlooked errors in mysql driver folder while working on 0.8.4 patch. To fix them, I have prepared mysql_driver_084.patch, you can find it at: https://sourceforge.net/projects/knoda4/files/hk_classes/ Just apply it to hk_classes-0.8.4 folder structure. Br Patrik 2016-02-17 17:35 GMT+01:00 martin <ma...@mh...>: > On 17/02/16 08:33, Patrik Hanak wrote: > > Hi All ! > > I prepared a patch to fix compilation errors in 0.8.3 version and > increased the version number to 0.8.4. > The patch and patched version can be found at: > https://sourceforge.net/projects/knoda4/files/hk_classes/ > > It worked well on OpenSUSE 13.2 64-bit and Debian 8 (Jessie) 32-bit > > Enjoy > > Br > > Patrik > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now!http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 > > > > _______________________________________________ > Hk-classes-discuss mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > I have just run it on LinuxMint lmde2 (jessie 64) and I attach the new > errors list. > > Many of the file errors *.ioT have moved and the bulk are no longer in > hk_dbaseclasses > > We are definitely getting closer! > > I will go away and try and understand your patch and see whether I can > improve it at all. > > Thanks for your help. > > martin welsh > > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > |
From: martin <ma...@mh...> - 2016-02-17 16:35:53
|
hk_classes-0.8.4 failures. 17.02.2016 Makefile:339: recipe for target 'hk_mysqlcolumn.lo' failed make[2]: *** [hk_mysqlcolumn.lo] Error 1 hk_mysqlcolumn.loT renamed hk_mysqlcolumn.lo. continue Makefile:339: recipe for target 'hk_mysqldatasource.lo' failed make[2]: *** [hk_mysqldatasource.lo] Error 1 hk_mysqlcolumn.loT renamed hk_mysqlcolumn.lo. continue Makefile:339: recipe for target 'hk_mysqltable.lo' failed make[2]: *** [hk_mysqltable.lo] Error 1 hk_mysqltable.loT renamed hk_mysqltable.lo. continued until the end of make. sudo make install Completed. |
From: Patrik H. <ha...@us...> - 2016-02-17 08:33:25
|
Hi All ! I prepared a patch to fix compilation errors in 0.8.3 version and increased the version number to 0.8.4. The patch and patched version can be found at: https://sourceforge.net/projects/knoda4/files/hk_classes/ It worked well on OpenSUSE 13.2 64-bit and Debian 8 (Jessie) 32-bit Enjoy Br Patrik |
From: <arc...@to...> - 2016-02-04 17:02:26
|
Ciao Martin, thank you for yor fast reply. I send you my email address: tomasil.it (to complete what you se on mailinglist) I'll be happy to receive the Horst's correction (is still 'alive'?) I tried change extension from loT to lo; i did it for several file but after i had a new message: Ciao e grazie Livio message: c++ -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wl,-Bsymbolic-functions -Wl,-z,relro -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security build/temp.linux-i686-2.7/hk_classes_wrap.o -L../hk_classes/.libs -Wl,-R/usr/lib/hk_classes -lhk_classes -o build/lib.linux-i686-2.7/_hk_classes.so make[2]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/python" Making all in hk_dbaseclasses make[2]: ingresso nella directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_dbaseclasses" make[2]: Nessuna operazione da eseguire per "all". make[2]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_dbaseclasses" Making all in hk_paradoxclasses make[2]: ingresso nella directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_paradoxclasses" make[2]: Nessuna operazione da eseguire per "all". make[2]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_paradoxclasses" Making all in hk_sqliteclasses make[2]: ingresso nella directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_sqliteclasses" make[2]: Nessuna operazione da eseguire per "all". make[2]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_sqliteclasses" Making all in hk_sqlite3classes make[2]: ingresso nella directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_sqlite3classes" make[2]: Nessuna operazione da eseguire per "all". make[2]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_sqlite3classes" Making all in utilities make[2]: ingresso nella directory "/home/lilo/Documenti/hk_classes-0.8.3/utilities" make[2]: *** Nessuna regola per generare l'obiettivo "hk_actionquery", necessario per "all-am". Arresto. make[2]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/utilities" Makefile:296: set di istruzioni per l'obiettivo "all-recursive" non riuscito make[1]: *** [all-recursive] Errore 1 make[1]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3" Makefile:225: set di istruzioni per l'obiettivo "all" non riuscito make: *** [all] Errore 2 lilo@debian:~/Documenti/hk_classes-0.8.3$ |
From: <arc...@to...> - 2016-02-04 16:43:15
|
Ciao Gilcio Amaral, thank you very macth for your fast reply. Yes, knoda is very strong. Me too i tried to use Libre office but is not suitable for sqlite3. Ciao grazie Livio |
From: martin <ma...@mh...> - 2016-02-03 15:21:38
|
On 03/02/16 14:20, Gilcio Amaral-Martins wrote: > Knoda and hk_classes are not maintained anymore. They cannot be > compiled by actual libraries. To compile them you have to downgrade > your system. In slackware, for example they could be compiled with > version 12.2 not in actual 14.2-current. > Knoda is a very good program, similar to MS Access. Now I'm using > LibreOffice Base. > Gilcio Amaral > > Em qua, 3 de fev de 2016 às 12:04, arc...@to... > <mailto:arc...@to...> <arc...@to... > <mailto:arc...@to...>> escreveu: > > Ciao, > > i'm tryng to install hk_classes on Lubuntu linux, > ./configure is ok > during make i get this message: > > hk_datasource.h:756:8: warning: 'typedef' was ignored in this > declaration > }; > ^ > hk_actionquery.cpp: In member function 'void > hk_actionquery::set_sql(const hk_string&, bool)': > hk_actionquery.cpp:68:37: error: 'memcpy' was not declared in this > scope > memcpy(buffer,sq.c_str(),sq.size()+1); > ^ > Makefile:454: set di istruzioni per l'obiettivo > "libhk_classes_la-hk_actionquery.lo" non riuscito > make[3]: *** [libhk_classes_la-hk_actionquery.lo] Errore 1 > make[3]: uscita dalla directory > "/home/lilo/Documenti/hk_classes-0.8.3/hk_classes" > Makefile:837: set di istruzioni per l'obiettivo "all-recursive" > non riuscito > make[2]: *** [all-recursive] Errore 1 > make[2]: uscita dalla directory > "/home/lilo/Documenti/hk_classes-0.8.3/hk_classes" > Makefile:296: set di istruzioni per l'obiettivo "all-recursive" > non riuscito > make[1]: *** [all-recursive] Errore 1 > make[1]: uscita dalla directory > "/home/lilo/Documenti/hk_classes-0.8.3" > Makefile:225: set di istruzioni per l'obiettivo "all" non riuscito > make: *** [all] Errore 2 > lilo@debian:~/Documenti/hk_classes-0.8.3$ > > Someone can help me? > Thankyou > Livio > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140 > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > <mailto:Hk-...@li...> > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140 > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss I think that if you look in /home/lilo/Documenti/hk_classes-0.8.3/hk_classes the file libhk_classes_la-hk_actionquery.lo is mislabelled as libhk_classes_la-hk_actionquery.loT. This is mislabelled by the programme libtool. Rename the file libhk_classes_la-hk_actionquery.loT. and continue 'make'. I think that the cause is a more modern gcc. Similarly; "hk_actionquery.cpp:68:37: error: 'memcpy' was not declared in this scope memcpy(buffer,sq.c_str(),sq.size()+1)"; is another result of using a more modern gcc. If similar faults are fed into Stackoverflow remedies are usually forthcoming. If you send me an email address I will send you a list of corrections to be applied to a Sourceforge hk_classes by Horst Knorr. These will give you a hk_classes installation but with me the libraries are in /usr/lib64. (I use an AMD64 machine.) There is now an application Knoda4 (Sourceforge) and this is built with the current kde software. This will work with hk_classes but at the moment you will need to change the library location to /usr/lib64 when installing Knoda4. Together they produce Knoda. martin welsh |
From: Gilcio Amaral-M. <gil...@gm...> - 2016-02-03 14:21:15
|
Knoda and hk_classes are not maintained anymore. They cannot be compiled by actual libraries. To compile them you have to downgrade your system. In slackware, for example they could be compiled with version 12.2 not in actual 14.2-current. Knoda is a very good program, similar to MS Access. Now I'm using LibreOffice Base. Gilcio Amaral Em qua, 3 de fev de 2016 às 12:04, arc...@to... < arc...@to...> escreveu: > Ciao, > > i'm tryng to install hk_classes on Lubuntu linux, > ./configure is ok > during make i get this message: > > hk_datasource.h:756:8: warning: 'typedef' was ignored in this declaration > }; > ^ > hk_actionquery.cpp: In member function 'void > hk_actionquery::set_sql(const hk_string&, bool)': > hk_actionquery.cpp:68:37: error: 'memcpy' was not declared in this scope > memcpy(buffer,sq.c_str(),sq.size()+1); > ^ > Makefile:454: set di istruzioni per l'obiettivo > "libhk_classes_la-hk_actionquery.lo" non riuscito > make[3]: *** [libhk_classes_la-hk_actionquery.lo] Errore 1 > make[3]: uscita dalla directory > "/home/lilo/Documenti/hk_classes-0.8.3/hk_classes" > Makefile:837: set di istruzioni per l'obiettivo "all-recursive" non > riuscito > make[2]: *** [all-recursive] Errore 1 > make[2]: uscita dalla directory > "/home/lilo/Documenti/hk_classes-0.8.3/hk_classes" > Makefile:296: set di istruzioni per l'obiettivo "all-recursive" non > riuscito > make[1]: *** [all-recursive] Errore 1 > make[1]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3" > Makefile:225: set di istruzioni per l'obiettivo "all" non riuscito > make: *** [all] Errore 2 > lilo@debian:~/Documenti/hk_classes-0.8.3$ > > Someone can help me? > Thankyou > Livio > > > ------------------------------------------------------------------------------ > Site24x7 APM Insight: Get Deep Visibility into Application Performance > APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month > Monitor end-to-end web transactions and take corrective actions now > Troubleshoot faster and improve end-user experience. Signup Now! > http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140 > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > |
From: <arc...@to...> - 2016-02-03 14:04:30
|
Ciao, i'm tryng to install hk_classes on Lubuntu linux, ./configure is ok during make i get this message: hk_datasource.h:756:8: warning: 'typedef' was ignored in this declaration }; ^ hk_actionquery.cpp: In member function 'void hk_actionquery::set_sql(const hk_string&, bool)': hk_actionquery.cpp:68:37: error: 'memcpy' was not declared in this scope memcpy(buffer,sq.c_str(),sq.size()+1); ^ Makefile:454: set di istruzioni per l'obiettivo "libhk_classes_la-hk_actionquery.lo" non riuscito make[3]: *** [libhk_classes_la-hk_actionquery.lo] Errore 1 make[3]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_classes" Makefile:837: set di istruzioni per l'obiettivo "all-recursive" non riuscito make[2]: *** [all-recursive] Errore 1 make[2]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3/hk_classes" Makefile:296: set di istruzioni per l'obiettivo "all-recursive" non riuscito make[1]: *** [all-recursive] Errore 1 make[1]: uscita dalla directory "/home/lilo/Documenti/hk_classes-0.8.3" Makefile:225: set di istruzioni per l'obiettivo "all" non riuscito make: *** [all] Errore 2 lilo@debian:~/Documenti/hk_classes-0.8.3$ Someone can help me? Thankyou Livio |
From: martin <ma...@mh...> - 2014-11-21 19:08:11
|
On 21/11/14 17:39, Robert Leleu wrote: > Unexpected but exciting. > > Let me know what will happen > > On 21/11/2014 17:11, martin wrote: >> Yes there is an update. >> >> I believe that the original hk_classes from Hans Knorr is devoid of any >> kde components and is/should be 'future proof' so the new Knoda4 uses >> the old hk_classes. >> >> I am trying to recreate the old hk_classes so that I may try the new >> Kde4 Knoda. >> >> martin welsh >> >> ------------------------------------------------------------------------------ >> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >> from Actuate! Instantly Supercharge Your Business Reports and Dashboards >> with Interactivity, Sharing, Native Excel Exports, App Integration & more >> Get technology previously reserved for billion-dollar corporations, FREE >> http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> > > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration & more > Get technology previously reserved for billion-dollar corporations, FREE > http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss There are downloads available through "Sourceforge/knoda4" or knoda4.sourceforge. If you have a clean version of hk_classes you should be able to try knoda4. Presently I am having difficulty getting Hans Knorrs original hk_classes to compile with more modern compilers. It is nice to hear from you. martin welsh |
From: Robert L. <rob...@wa...> - 2014-11-21 17:40:03
|
Unexpected but exciting. Let me know what will happen On 21/11/2014 17:11, martin wrote: > Yes there is an update. > > I believe that the original hk_classes from Hans Knorr is devoid of any > kde components and is/should be 'future proof' so the new Knoda4 uses > the old hk_classes. > > I am trying to recreate the old hk_classes so that I may try the new > Kde4 Knoda. > > martin welsh > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration & more > Get technology previously reserved for billion-dollar corporations, FREE > http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > |
From: martin <ma...@mh...> - 2014-11-21 16:26:42
|
Yes there is an update. I believe that the original hk_classes from Hans Knorr is devoid of any kde components and is/should be 'future proof' so the new Knoda4 uses the old hk_classes. I am trying to recreate the old hk_classes so that I may try the new Kde4 Knoda. martin welsh |
From: <arc...@to...> - 2013-11-25 17:08:46
|
Il 25/11/2013 17.13, hk-...@li... ha scritto: > Send Hk-classes-discuss mailing list submissions to > hk-...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > or, via email, send a message with subject or body 'help' to > hk-...@li... > > You can reach the person managing the list at > hk-...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Hk-classes-discuss digest..." > > > Today's Topics: > > 1. (no subject) (Arthur Baldwin) > 2. well, I moved to libreoffice4.1 (moebius) > 3. Re: well, I moved to libreoffice4.1 (Robert Leleu) > 4. Re: well, I moved to libreoffice4.1 (martin) > 5. Re: well, I moved to libreoffice4.1 (Robert Leleu) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 24 Sep 2012 09:47:16 -0700 (PDT) > From: Arthur Baldwin <een...@ya...> > Subject: [Hk-classes-discuss] (no subject) > To: ds...@gt..., hk-...@li..., > hk-...@li... > Message-ID: > <134...@we...> > Content-Type: text/plain; charset="us-ascii" > > http://africareddesk.com/wp-content/plugins/akismet/google.html?df=zb.jieg&wm=wg.hkml&ceom=hwtx > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 2 > Date: Sun, 24 Nov 2013 20:41:38 +0100 > From: moebius <moe...@fr...> > Subject: [Hk-classes-discuss] well, I moved to libreoffice4.1 > To: hk-...@li... > Message-ID: <529...@fr...> > Content-Type: text/plain; charset=UTF-8; format=flowed > > Bonjour, > > Perhaps this will interest someone.... > > As said in title, I moved my music records to libreoffice 4.1. > > In former versions, base report module was a little buggy but now, it > works fine as long as I can see. > Everything's working fine. > > I've export using knoda on an old ubuntu distro installed on virtualbox. > Export was in csv format with tab between fields and a strange sign that > I never use : ? for fields content. > > Everything has worked fine, even the accents on letters. I use the > internal sgbd (hsql) of libreoffice, no more mysql. > > > Knoda end :( but we can expect libreoffice to be maintened for a longer > time than knoda. > > cordialement, > > > > > ------------------------------ > > Message: 3 > Date: Sun, 24 Nov 2013 21:05:26 +0100 > From: Robert Leleu <rob...@wa...> > Subject: Re: [Hk-classes-discuss] well, I moved to libreoffice4.1 > To: hk-...@li... > Message-ID: <529...@wa...> > Content-Type: text/plain; charset="utf-8" > > I go on using kexi, far less easy than knoda, but alive. > > bon courage ? tous > > > moebius a ?crit : >> Bonjour, >> >> Perhaps this will interest someone.... >> >> As said in title, I moved my music records to libreoffice 4.1. >> >> In former versions, base report module was a little buggy but now, it >> works fine as long as I can see. >> Everything's working fine. >> >> I've export using knoda on an old ubuntu distro installed on virtualbox. >> Export was in csv format with tab between fields and a strange sign that >> I never use : ? for fields content. >> >> Everything has worked fine, even the accents on letters. I use the >> internal sgbd (hsql) of libreoffice, no more mysql. >> >> >> Knoda end :( but we can expect libreoffice to be maintened for a longer >> time than knoda. >> >> cordialement, >> >> >> ------------------------------------------------------------------------------ >> Shape the Mobile Experience: Free Subscription >> Software experts and developers: Be at the forefront of tech innovation. >> Intel(R) Software Adrenaline delivers strategic insight and game-changing >> conversations that shape the rapidly evolving mobile landscape. Sign up now. >> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 4 > Date: Mon, 25 Nov 2013 13:59:36 +0000 > From: martin <ma...@mh...> > Subject: Re: [Hk-classes-discuss] well, I moved to libreoffice4.1 > To: discussing hk_classes & knoda > <hk-...@li...> > Message-ID: <529...@mh...> > Content-Type: text/plain; charset="iso-8859-1" > > On 24/11/13 20:05, Robert Leleu wrote: >> I go on using kexi, far less easy than knoda, but alive. >> >> bon courage ? tous >> >> >> moebius a ?crit : >>> Bonjour, >>> >>> Perhaps this will interest someone.... >>> >>> As said in title, I moved my music records to libreoffice 4.1. >>> >>> In former versions, base report module was a little buggy but now, it >>> works fine as long as I can see. >>> Everything's working fine. >>> >>> I've export using knoda on an old ubuntu distro installed on virtualbox. >>> Export was in csv format with tab between fields and a strange sign that >>> I never use : ? for fields content. >>> >>> Everything has worked fine, even the accents on letters. I use the >>> internal sgbd (hsql) of libreoffice, no more mysql. >>> >>> >>> Knoda end :( but we can expect libreoffice to be maintened for a longer >>> time than knoda. >>> >>> cordialement, >>> >>> >>> ------------------------------------------------------------------------------ >>> Shape the Mobile Experience: Free Subscription >>> Software experts and developers: Be at the forefront of tech innovation. >>> Intel(R) Software Adrenaline delivers strategic insight and game-changing >>> conversations that shape the rapidly evolving mobile landscape. Sign up now. >>> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >>> _______________________________________________ >>> Hk-classes-discuss mailing list >>> Hk-...@li... >>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> >> ------------------------------------------------------------------------------ >> Shape the Mobile Experience: Free Subscription >> Software experts and developers: Be at the forefront of tech innovation. >> Intel(R) Software Adrenaline delivers strategic insight and game-changing >> conversations that shape the rapidly evolving mobile landscape. Sign up now. >> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >> >> >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > I am still using Knoda and it seems to load up with current issues of > KDE using the dpkg -i force function. I still have ambitions to update > some of it. Will keep you informed. > > Have a good Christmas. > > martin welsh > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 5 > Date: Mon, 25 Nov 2013 17:13:48 +0100 > From: Robert Leleu <rob...@wa...> > Subject: Re: [Hk-classes-discuss] well, I moved to libreoffice4.1 > To: hk-...@li... > Message-ID: <529...@wa...> > Content-Type: text/plain; charset="utf-8" > > good news > > > martin a ?crit : >> On 24/11/13 20:05, Robert Leleu wrote: >>> I go on using kexi, far less easy than knoda, but alive. >>> >>> bon courage ? tous >>> >>> >>> moebius a ?crit : >>>> Bonjour, >>>> >>>> Perhaps this will interest someone.... >>>> >>>> As said in title, I moved my music records to libreoffice 4.1. >>>> >>>> In former versions, base report module was a little buggy but now, it >>>> works fine as long as I can see. >>>> Everything's working fine. >>>> >>>> I've export using knoda on an old ubuntu distro installed on virtualbox. >>>> Export was in csv format with tab between fields and a strange sign that >>>> I never use : ? for fields content. >>>> >>>> Everything has worked fine, even the accents on letters. I use the >>>> internal sgbd (hsql) of libreoffice, no more mysql. >>>> >>>> >>>> Knoda end :( but we can expect libreoffice to be maintened for a longer >>>> time than knoda. >>>> >>>> cordialement, >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> Shape the Mobile Experience: Free Subscription >>>> Software experts and developers: Be at the forefront of tech innovation. >>>> Intel(R) Software Adrenaline delivers strategic insight and game-changing >>>> conversations that shape the rapidly evolving mobile landscape. Sign up now. >>>> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >>>> _______________________________________________ >>>> Hk-classes-discuss mailing list >>>> Hk-...@li... >>>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >>> >>> ------------------------------------------------------------------------------ >>> Shape the Mobile Experience: Free Subscription >>> Software experts and developers: Be at the forefront of tech innovation. >>> Intel(R) Software Adrenaline delivers strategic insight and game-changing >>> conversations that shape the rapidly evolving mobile landscape. Sign up now. >>> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >>> >>> >>> _______________________________________________ >>> Hk-classes-discuss mailing list >>> Hk-...@li... >>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> I am still using Knoda and it seems to load up with current issues of >> KDE using the dpkg -i force function. I still have ambitions to >> update some of it. Will keep you informed. >> >> Have a good Christmas. >> >> martin welsh >> >> >> ------------------------------------------------------------------------------ >> Shape the Mobile Experience: Free Subscription >> Software experts and developers: Be at the forefront of tech innovation. >> Intel(R) Software Adrenaline delivers strategic insight and game-changing >> conversations that shape the rapidly evolving mobile landscape. Sign up now. >> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >> >> >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > ------------------------------------------------------------------------------ > Shape the Mobile Experience: Free Subscription > Software experts and developers: Be at the forefront of tech innovation. > Intel(R) Software Adrenaline delivers strategic insight and game-changing > conversations that shape the rapidly evolving mobile landscape. Sign up now. > http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk > > ------------------------------ > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > > End of Hk-classes-discuss Digest, Vol 45, Issue 1 > ************************************************* > Ciao, i still use knoda, (because i don't find a substitute!) and together python + wxpython + pysqlite; i hope in a near future, someone reopen knoda development best regard LIvio |
From: Robert L. <rob...@wa...> - 2013-11-25 16:13:57
|
good news martin a écrit : > On 24/11/13 20:05, Robert Leleu wrote: >> I go on using kexi, far less easy than knoda, but alive. >> >> bon courage à tous >> >> >> moebius a écrit : >>> Bonjour, >>> >>> Perhaps this will interest someone.... >>> >>> As said in title, I moved my music records to libreoffice 4.1. >>> >>> In former versions, base report module was a little buggy but now, it >>> works fine as long as I can see. >>> Everything's working fine. >>> >>> I've export using knoda on an old ubuntu distro installed on virtualbox. >>> Export was in csv format with tab between fields and a strange sign that >>> I never use : § for fields content. >>> >>> Everything has worked fine, even the accents on letters. I use the >>> internal sgbd (hsql) of libreoffice, no more mysql. >>> >>> >>> Knoda end :( but we can expect libreoffice to be maintened for a longer >>> time than knoda. >>> >>> cordialement, >>> >>> >>> ------------------------------------------------------------------------------ >>> Shape the Mobile Experience: Free Subscription >>> Software experts and developers: Be at the forefront of tech innovation. >>> Intel(R) Software Adrenaline delivers strategic insight and game-changing >>> conversations that shape the rapidly evolving mobile landscape. Sign up now. >>> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >>> _______________________________________________ >>> Hk-classes-discuss mailing list >>> Hk-...@li... >>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> >> >> ------------------------------------------------------------------------------ >> Shape the Mobile Experience: Free Subscription >> Software experts and developers: Be at the forefront of tech innovation. >> Intel(R) Software Adrenaline delivers strategic insight and game-changing >> conversations that shape the rapidly evolving mobile landscape. Sign up now. >> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >> >> >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > I am still using Knoda and it seems to load up with current issues of > KDE using the dpkg -i force function. I still have ambitions to > update some of it. Will keep you informed. > > Have a good Christmas. > > martin welsh > > > ------------------------------------------------------------------------------ > Shape the Mobile Experience: Free Subscription > Software experts and developers: Be at the forefront of tech innovation. > Intel(R) Software Adrenaline delivers strategic insight and game-changing > conversations that shape the rapidly evolving mobile landscape. Sign up now. > http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss |
From: martin <ma...@mh...> - 2013-11-25 14:14:19
|
On 24/11/13 20:05, Robert Leleu wrote: > I go on using kexi, far less easy than knoda, but alive. > > bon courage à tous > > > moebius a écrit : >> Bonjour, >> >> Perhaps this will interest someone.... >> >> As said in title, I moved my music records to libreoffice 4.1. >> >> In former versions, base report module was a little buggy but now, it >> works fine as long as I can see. >> Everything's working fine. >> >> I've export using knoda on an old ubuntu distro installed on virtualbox. >> Export was in csv format with tab between fields and a strange sign that >> I never use : § for fields content. >> >> Everything has worked fine, even the accents on letters. I use the >> internal sgbd (hsql) of libreoffice, no more mysql. >> >> >> Knoda end :( but we can expect libreoffice to be maintened for a longer >> time than knoda. >> >> cordialement, >> >> >> ------------------------------------------------------------------------------ >> Shape the Mobile Experience: Free Subscription >> Software experts and developers: Be at the forefront of tech innovation. >> Intel(R) Software Adrenaline delivers strategic insight and game-changing >> conversations that shape the rapidly evolving mobile landscape. Sign up now. >> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > > ------------------------------------------------------------------------------ > Shape the Mobile Experience: Free Subscription > Software experts and developers: Be at the forefront of tech innovation. > Intel(R) Software Adrenaline delivers strategic insight and game-changing > conversations that shape the rapidly evolving mobile landscape. Sign up now. > http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss I am still using Knoda and it seems to load up with current issues of KDE using the dpkg -i force function. I still have ambitions to update some of it. Will keep you informed. Have a good Christmas. martin welsh |
From: Robert L. <rob...@wa...> - 2013-11-24 20:05:36
|
I go on using kexi, far less easy than knoda, but alive. bon courage à tous moebius a écrit : > Bonjour, > > Perhaps this will interest someone.... > > As said in title, I moved my music records to libreoffice 4.1. > > In former versions, base report module was a little buggy but now, it > works fine as long as I can see. > Everything's working fine. > > I've export using knoda on an old ubuntu distro installed on virtualbox. > Export was in csv format with tab between fields and a strange sign that > I never use : § for fields content. > > Everything has worked fine, even the accents on letters. I use the > internal sgbd (hsql) of libreoffice, no more mysql. > > > Knoda end :( but we can expect libreoffice to be maintened for a longer > time than knoda. > > cordialement, > > > ------------------------------------------------------------------------------ > Shape the Mobile Experience: Free Subscription > Software experts and developers: Be at the forefront of tech innovation. > Intel(R) Software Adrenaline delivers strategic insight and game-changing > conversations that shape the rapidly evolving mobile landscape. Sign up now. > http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss |
From: moebius <moe...@fr...> - 2013-11-24 19:41:51
|
Bonjour, Perhaps this will interest someone.... As said in title, I moved my music records to libreoffice 4.1. In former versions, base report module was a little buggy but now, it works fine as long as I can see. Everything's working fine. I've export using knoda on an old ubuntu distro installed on virtualbox. Export was in csv format with tab between fields and a strange sign that I never use : § for fields content. Everything has worked fine, even the accents on letters. I use the internal sgbd (hsql) of libreoffice, no more mysql. Knoda end :( but we can expect libreoffice to be maintened for a longer time than knoda. cordialement, |
From: Arthur B. <een...@ya...> - 2012-09-24 16:47:23
|
http://africareddesk.com/wp-content/plugins/akismet/google.html?df=zb.jieg&wm=wg.hkml&ceom=hwtx |
From: Robert L. <rob...@wa...> - 2012-09-13 20:16:10
|
Further my last message I report about transferring to Kexi in http://forum.kde.org/viewtopic.php?f=221&t=107770 I also had a look at Glom which I found bugged, and was not able to design a table. Robert Leleu a écrit : > I installed easily Kexi under Ubuntu 12.04 (I didn’t succeed under > previous Ubuntus) > > Kexi has a menu to import databases, which runs only to import kexi > made databases… > > It has also a menu to import csv tables in a kexi base. So: > - I created a kexi base > - using Knoda I exported my tables in csv files > - Using a sheet I hand changed to «space» some «carriage returns» > found in some values of text fields (kexi was in error in these cases) > - I imported the tables, specifying the primary key in thi import > dialog (a designation forbidden later) > - and… I created a first query identical to one in Knoda (I don’t > think an import to be feasible) > > > I’ll report later about forms and reports. > > -- > L’espéranto serait bien utile pour rapprocher les européens entre eux :http://e-d-e.org/?lang=fr > Pour y parvenir, signez la pétition parrainée par Albert Jacquart :http://esperanto-au-bac.fr/##sp1 > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss -- L’espéranto serait bien utile pour rapprocher les européens entre eux : http://e-d-e.org/?lang=fr Pour y parvenir, signez la pétition parrainée par Albert Jacquart : http://esperanto-au-bac.fr/##sp1 |
From: Robert L. <rob...@wa...> - 2012-05-13 19:06:27
|
I installed easily Kexi under Ubuntu 12.04 (I didn’t succeed under previous Ubuntus) Kexi has a menu to import databases, which runs only to import kexi made databases… It has also a menu to import csv tables in a kexi base. So: - I created a kexi base - using Knoda I exported my tables in csv files - Using a sheet I hand changed to «space» some «carriage returns» found in some values of text fields (kexi was in error in these cases) - I imported the tables, specifying the primary key in thi import dialog (a designation forbidden later) - and… I created a first query identical to one in Knoda (I don’t think an import to be feasible) I’ll report later about forms and reports. -- L’espéranto serait bien utile pour rapprocher les européens entre eux : http://e-d-e.org/?lang=fr Pour y parvenir, signez la pétition parrainée par Albert Jacquart : http://esperanto-au-bac.fr/##sp1 |
From: Robert L. <rob...@wa...> - 2012-03-01 18:27:06
|
Je la 01/03/2012 17:47-------- Origina mesaĝo-------- martin skribis (esperanto estas la unua internacia lingvo): > On 28/02/12 15:50, Robert Leleu wrote: >> >> >> >> If you master the LAN between the real and the virtual, it should be >> possible te let mysql on the real machine' shouldn’t it ? >> >> >> >> Je la 02/02/2012 22:09-------- Origina mesaĝo-------- moebius skribis >> (esperanto estas la unua internacia lingvo): >>> Bonjour, >>> >>> You're not alone with knoda, but it seems that we are less and less >>> numerous... >>> >>> Well I've given up knoda working on recent system ; I ran ubuntu 11.10 >>> now and don't want to waste too much time. >>> >>> So I've install virtualbox and an old ubuntu and knoda. It's not a good >>> solution, but it works. >>> The problem is that my mysql bases are now on the virtualbox machine and >>> no more on my real machine. >>> I have to automatize tranfert between the 2 machines, but there's >>> perhaps another solution....I don't know. >>> >>> Anyway, what else can we do now ? Problems are growing in time.... >>> >>> cordialement, >>> >>> >>> Le 02/02/2012 15:03, Robert Leleu a écrit : >>>> Having a new printer the printing no longer works. >>>> In fact the installation of the new printer uninstalled «kprinter» which >>>> is no longer supported. >>>> >>>> I tried gtklp, no print, no message, Debug says: >>>> HKDebug: Unknown classname hk_report::print_report >>>> kprinter : option invalide -- 'j' >>>> Usage: gtklp [-P|-d printer] [-c configdir] [-S server] [-U user] [-p >>>> port] [-l] [-D] [-V] [-b] [-i] [-# n] [-C] [-H] [-E] [-J jobname] [-q >>>> priority] [-o option=valeur ...] [fichier(s)] >>>> >>>> >>>> >>>> and I tried using a link (named kprinter) to gtklp. no print, no >>>> message. Debug says : >>>> HKDebug: Unknown classname hk_report::print_report >>>> kprinter : option invalide -- 'j' >>>> Usage: gtklp [-P|-d printer] [-c configdir] [-S server] [-U user] [-p >>>> port] [-l] [-D] [-V] [-b] [-i] [-# n] [-C] [-H] [-E] [-J jobname] [-q >>>> priority] [-o option=valeur ...] [fichier(s)] >>>> >>>> >>>> it seems that the printing command is called witha --j option, not valid >>>> for gtklp >>>> >>>> however since thi report is stored in >>>> ~/.hk_classes/mysql/localhost/test/output/enveloppe.ps >>>> >>>> one is able to open and print it >>>> >>>> >>>> -- >>>> L’espéranto serait bien utile pour rapprocher les européens entre eux :http://e-d-e.org/?lang=fr >>>> Pour y parvenir, signez la pétition parrainée par Albert Jacquart :http://esperanto-au-bac.fr/##sp1 >>>> >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> Keep Your Developer Skills Current with LearnDevNow! >>>> The most comprehensive online learning library for Microsoft developers >>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >>>> Metro Style Apps, more. Free future releases when you subscribe now! >>>> http://p.sf.net/sfu/learndevnow-d2d >>>> >>>> >>>> >>>> _______________________________________________ >>>> Hk-classes-discuss mailing list >>>> Hk-...@li... >>>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >>> >>> ------------------------------------------------------------------------------ >>> Keep Your Developer Skills Current with LearnDevNow! >>> The most comprehensive online learning library for Microsoft developers >>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >>> Metro Style Apps, more. Free future releases when you subscribe now! >>> http://p.sf.net/sfu/learndevnow-d2d >>> _______________________________________________ >>> Hk-classes-discuss mailing list >>> Hk-...@li... >>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> >> -- >> L’espéranto serait bien utile pour rapprocher les européens entre eux :http://e-d-e.org/?lang=fr >> Pour y parvenir, signez la pétition parrainée par Albert Jacquart :http://esperanto-au-bac.fr/##sp1 >> >> >> ------------------------------------------------------------------------------ >> Keep Your Developer Skills Current with LearnDevNow! >> The most comprehensive online learning library for Microsoft developers >> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >> Metro Style Apps, more. Free future releases when you subscribe now! >> http://p.sf.net/sfu/learndevnow-d2d >> >> >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > I have installed a KDEmint 12 amd64 into a VMware Player, this has > 64bit Knoda installed together with a 64 bit Mysql. > > The VMware Player can see both nodes on my LAN and access the internet. > This means that I can transfer data/programs both into and out of the > VMware Player but it is effectively a third machine. I am aware that > there are synchronization programmes for Mysql that enable two > different Mysql installations to be shared. > I have elected to use mysqldump to record the current contents of the > installation that I am using and should I wish to transfer this, the > latest data, to another node on the LAN I just load it in and the > database on the receiving node has only the latest data. > "mysqldump 'databasename' <./the-lateset-dump -u xxxx -p" > I have used this technique for storing backups for a few years now and > it works. > Two other small points Ubuntu archives keep amd 64 .debs and Debian > packages keep any others. When loaded with amd 64 packages there are > no difficulties with 'overwrites' between Kde3 and Kde4. > If you are having trouble with the printer perhaps "printing to file" > will produce a printable file. > > martin welsh > in fact I just checked that ..... Print is totally dead (previously I had an error message). But since the reports are ps files stored in /home/leleu/.hk_classes/mysql/localhost/test/output this file can be used for printing |
From: martin <ma...@mh...> - 2012-03-01 17:02:14
|
On 28/02/12 15:50, Robert Leleu wrote: > > > > If you master the LAN between the real and the virtual, it should be > possible te let mysql on the real machine' shouldn't it ? > > > > Je la 02/02/2012 22:09-------- Origina mesag^o-------- moebius skribis > (esperanto estas la unua internacia lingvo): >> Bonjour, >> >> You're not alone with knoda, but it seems that we are less and less >> numerous... >> >> Well I've given up knoda working on recent system ; I ran ubuntu 11.10 >> now and don't want to waste too much time. >> >> So I've install virtualbox and an old ubuntu and knoda. It's not a good >> solution, but it works. >> The problem is that my mysql bases are now on the virtualbox machine and >> no more on my real machine. >> I have to automatize tranfert between the 2 machines, but there's >> perhaps another solution....I don't know. >> >> Anyway, what else can we do now ? Problems are growing in time.... >> >> cordialement, >> >> >> Le 02/02/2012 15:03, Robert Leleu a écrit : >>> Having a new printer the printing no longer works. >>> In fact the installation of the new printer uninstalled «kprinter» which >>> is no longer supported. >>> >>> I tried gtklp, no print, no message, Debug says: >>> HKDebug: Unknown classname hk_report::print_report >>> kprinter : option invalide -- 'j' >>> Usage: gtklp [-P|-d printer] [-c configdir] [-S server] [-U user] [-p >>> port] [-l] [-D] [-V] [-b] [-i] [-# n] [-C] [-H] [-E] [-J jobname] [-q >>> priority] [-o option=valeur ...] [fichier(s)] >>> >>> >>> >>> and I tried using a link (named kprinter) to gtklp. no print, no >>> message. Debug says : >>> HKDebug: Unknown classname hk_report::print_report >>> kprinter : option invalide -- 'j' >>> Usage: gtklp [-P|-d printer] [-c configdir] [-S server] [-U user] [-p >>> port] [-l] [-D] [-V] [-b] [-i] [-# n] [-C] [-H] [-E] [-J jobname] [-q >>> priority] [-o option=valeur ...] [fichier(s)] >>> >>> >>> it seems that the printing command is called witha --j option, not valid >>> for gtklp >>> >>> however since thi report is stored in >>> ~/.hk_classes/mysql/localhost/test/output/enveloppe.ps >>> >>> one is able to open and print it >>> >>> >>> -- >>> L'espéranto serait bien utile pour rapprocher les européens entre eux :http://e-d-e.org/?lang=fr >>> Pour y parvenir, signez la pétition parrainée par Albert Jacquart :http://esperanto-au-bac.fr/##sp1 >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Keep Your Developer Skills Current with LearnDevNow! >>> The most comprehensive online learning library for Microsoft developers >>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >>> Metro Style Apps, more. Free future releases when you subscribe now! >>> http://p.sf.net/sfu/learndevnow-d2d >>> >>> >>> >>> _______________________________________________ >>> Hk-classes-discuss mailing list >>> Hk-...@li... >>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> >> ------------------------------------------------------------------------------ >> Keep Your Developer Skills Current with LearnDevNow! >> The most comprehensive online learning library for Microsoft developers >> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >> Metro Style Apps, more. Free future releases when you subscribe now! >> http://p.sf.net/sfu/learndevnow-d2d >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > -- > L'espéranto serait bien utile pour rapprocher les européens entre eux :http://e-d-e.org/?lang=fr > Pour y parvenir, signez la pétition parrainée par Albert Jacquart :http://esperanto-au-bac.fr/##sp1 > > > ------------------------------------------------------------------------------ > Keep Your Developer Skills Current with LearnDevNow! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-d2d > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss I have installed a KDEmint 12 amd64 into a VMware Player, this has 64bit Knoda installed together with a 64 bit Mysql. The VMware Player can see both nodes on my LAN and access the internet. This means that I can transfer data/programs both into and out of the VMware Player but it is effectively a third machine. I am aware that there are synchronization programmes for Mysql that enable two different Mysql installations to be shared. I have elected to use mysqldump to record the current contents of the installation that I am using and should I wish to transfer this, the latest data, to another node on the LAN I just load it in and the database on the receiving node has only the latest data. "mysqldump 'databasename' <./the-lateset-dump -u xxxx -p" I have used this technique for storing backups for a few years now and it works. Two other small points Ubuntu archives keep amd 64 .debs and Debian packages keep any others. When loaded with amd 64 packages there are no difficulties with 'overwrites' between Kde3 and Kde4. If you are having trouble with the printer perhaps "printing to file" will produce a printable file. martin welsh |
From: moebius <moe...@fr...> - 2012-02-28 19:18:55
|
Bonsoir, It would be very nice How does that can be done ? I've no idea at all. cordialement, Le 28/02/2012 16:50, Robert Leleu a écrit : > > > > If you master the LAN between the real and the virtual, it should be > possible te let mysql on the real machine' shouldn’t it ? > > > > Je la 02/02/2012 22:09-------- Origina mesaĝo-------- moebius skribis > (esperanto estas la unua internacia lingvo): >> Bonjour, >> >> You're not alone with knoda, but it seems that we are less and less >> numerous... >> >> Well I've given up knoda working on recent system ; I ran ubuntu 11.10 >> now and don't want to waste too much time. >> >> So I've install virtualbox and an old ubuntu and knoda. It's not a good >> solution, but it works. >> The problem is that my mysql bases are now on the virtualbox machine and >> no more on my real machine. >> I have to automatize tranfert between the 2 machines, but there's >> perhaps another solution....I don't know. >> >> Anyway, what else can we do now ? Problems are growing in time.... >> >> cordialement, >> >> >> Le 02/02/2012 15:03, Robert Leleu a écrit : >>> Having a new printer the printing no longer works. >>> In fact the installation of the new printer uninstalled «kprinter» which >>> is no longer supported. >>> >>> I tried gtklp, no print, no message, Debug says: >>> HKDebug: Unknown classname hk_report::print_report >>> kprinter : option invalide -- 'j' >>> Usage: gtklp [-P|-d printer] [-c configdir] [-S server] [-U user] [-p >>> port] [-l] [-D] [-V] [-b] [-i] [-# n] [-C] [-H] [-E] [-J jobname] [-q >>> priority] [-o option=valeur ...] [fichier(s)] >>> >>> >>> >>> and I tried using a link (named kprinter) to gtklp. no print, no >>> message. Debug says : >>> HKDebug: Unknown classname hk_report::print_report >>> kprinter : option invalide -- 'j' >>> Usage: gtklp [-P|-d printer] [-c configdir] [-S server] [-U user] [-p >>> port] [-l] [-D] [-V] [-b] [-i] [-# n] [-C] [-H] [-E] [-J jobname] [-q >>> priority] [-o option=valeur ...] [fichier(s)] >>> >>> >>> it seems that the printing command is called witha --j option, not valid >>> for gtklp >>> >>> however since thi report is stored in >>> ~/.hk_classes/mysql/localhost/test/output/enveloppe.ps >>> >>> one is able to open and print it >>> >>> >>> -- >>> L’espéranto serait bien utile pour rapprocher les européens entre eux :http://e-d-e.org/?lang=fr >>> Pour y parvenir, signez la pétition parrainée par Albert Jacquart :http://esperanto-au-bac.fr/##sp1 >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Keep Your Developer Skills Current with LearnDevNow! >>> The most comprehensive online learning library for Microsoft developers >>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >>> Metro Style Apps, more. Free future releases when you subscribe now! >>> http://p.sf.net/sfu/learndevnow-d2d >>> >>> >>> >>> _______________________________________________ >>> Hk-classes-discuss mailing list >>> Hk-...@li... >>> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss >> >> ------------------------------------------------------------------------------ >> Keep Your Developer Skills Current with LearnDevNow! >> The most comprehensive online learning library for Microsoft developers >> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, >> Metro Style Apps, more. Free future releases when you subscribe now! >> http://p.sf.net/sfu/learndevnow-d2d >> _______________________________________________ >> Hk-classes-discuss mailing list >> Hk-...@li... >> https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss > > -- > L’espéranto serait bien utile pour rapprocher les européens entre eux :http://e-d-e.org/?lang=fr > Pour y parvenir, signez la pétition parrainée par Albert Jacquart :http://esperanto-au-bac.fr/##sp1 > > > > ------------------------------------------------------------------------------ > Keep Your Developer Skills Current with LearnDevNow! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-d2d > > > > _______________________________________________ > Hk-classes-discuss mailing list > Hk-...@li... > https://lists.sourceforge.net/lists/listinfo/hk-classes-discuss |