Of course, but a last question for this topic:
What is the maximum length of a C field?
Maybe we could use it instead of a memo field.
Regards,
Peter
Search found 50 matches
- Mon Jun 03, 2024 10:37 am
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
- Mon Jun 03, 2024 9:44 am
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
>>but I can certainly add that for a future build If you could to this it would benefit other developers as well. Or we will decide to drop the dbf files and use SQL Server instead. Will this the be for X# 2.20? Kind regards, Peter PS: The topic title is a little bit misleading, its about the ...
- Mon Jun 03, 2024 9:03 am
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
Hello Robert,
Maybe a caveat, does this works with M fields too? Like M:U?
Right now it looks like these fields do not support Unicode.
Regards,
Peter
Maybe a caveat, does this works with M fields too? Like M:U?
Right now it looks like these fields do not support Unicode.
Regards,
Peter
- Mon Jun 03, 2024 7:42 am
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
This really works,
Many thanks,
Peter
Many thanks,
Peter
- Mon Jun 03, 2024 6:46 am
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
Hello Robert, >>If you create a DBF with the fieldtype "C:U" ... How can this be done in code? Can you share some of your infinite wisdom with us because the help file does not contain any example for DBServer (or I have overlooked it). Right now I using plain SQL and the OLEDB provider to create ...
- Fri May 24, 2024 3:52 pm
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
After trying several things with a hex editor and codepages like cp1250 and utf8 (and even used Python because it has a very good dbf module) I finally gave up. Its looks like its not possible to save the character Č in a dbf file. And even it if were possible other characters like the umlaute would ...
- Fri May 24, 2024 7:43 am
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
Hello, The codepage is, depending on who you ask, either 1031, 850 or 1252 (all on the same computer with different kind of queries). But its a "standard German setting". So, would setting the codepage in the dbf header be an option? I have tried the following sample code but it looks like it ...
- Thu May 23, 2024 7:37 am
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
Hello Chris, I didn't know about SetAnsi(). It returns just True. What I want is that a name with polish characters that is written into the dbf with FieldPut can be read again with FieldGet like oTest:FIELDPUT("Name","Anton Čapek") and later var name := oTest:FIELDGET("Name") ? name This outputs ...
- Wed May 22, 2024 2:44 pm
- Forum: Deutsches Forum
- Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
- Replies: 20
- Views: 1800
Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
Hallo Zusammen, Unsere Dbf-Datei, die per DBServer angesprochen wird, soll auch polnische Zeichen richtig speichern. Aktuell wird aus einem Čapek leider ein Capek. Leider kenne ich mich in der xBase-Welt zu wenig aus, um beurteilen zu können, ob dies eine prinzipielle Einschränkung ist, ob es an der ...
- Tue Nov 21, 2023 8:34 pm
- Forum: Product
- Topic: Compiler error XS9114
- Replies: 3
- Views: 1741
Re: Compiler error XS9114
Hello Robert, What I was looking for was the opposite. A switch that allows the use of the : colon for static methods. I am talking about compiler error XS9114: Can't access the static member ... with the COLON operator. This must be new. Having a switch that would allow using the colon with X# 2.18 ...