Hello jan,
{$DEFINE ZEOS_DISABLE_INTERBASE} and {$DEFINE ZEOS_DISABLE_FIREBIRD} Will cause compilation errors。Error unit:ZPlainFirebird 。
compiler: lazarus 2.2.2 and zeos8.0
Search found 26 matches
- 05.12.2022, 10:24
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Compilation error
- Replies: 2
- Views: 264
- 03.12.2022, 09:20
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Compilation error
- Replies: 2
- Views: 264
Compilation error
zeos.inc file // Uncomment these defines to disable some DB drivers (reduce binary size) {$DEFINE ZEOS_DISABLE_MYSQL} {$DEFINE ZEOS_DISABLE_POSTGRESQL} {.$DEFINE ZEOS_DISABLE_DBLIB} {$DEFINE ZEOS_DISABLE_ADO} {$DEFINE ZEOS_DISABLE_INTERBASE} {$DEFINE ZEOS_DISABLE_FIREBIRD} {.$DEFINE ZEOS_DISABLE_SQL...
- 30.11.2022, 02:11
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Failed to connect to mssql
- Replies: 2
- Views: 262
Re: Failed to connect to mssql
Thank you, Jan
With your reminder, the problem was solved. Because mssql does not have a patch installed, tcp/ip cannot be used.
With your reminder, the problem was solved. Because mssql does not have a patch installed, tcp/ip cannot be used.
- 29.11.2022, 16:10
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: Failed to connect to mssql
- Replies: 2
- Views: 262
Failed to connect to mssql
testing environment:zeoslib-code-0-r7936-trunk,lazarus, freeTDS1.3
- 10.01.2022, 02:26
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
hello marsupilami,
thanks
thanks
- 03.01.2022, 03:04
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
hello marsupilami,
We use zquery as a memory table, so CachedUpdates is used. My suggestion: When the current record is in the editing state, move the record back and forth to post automatically instead of cancel.
We use zquery as a memory table, so CachedUpdates is used. My suggestion: When the current record is in the editing state, move the record back and forth to post automatically instead of cancel.
- 31.12.2021, 07:44
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
hello, Now there is a new problem. When using ZQuery to modify a row of data, post and then edit, but without any modification, move to another row, move it back, and modify the data, an error will occur. I made a test project. ZDetectUTF8Encoding, there is one place that has not been changed, and t...
- 31.12.2021, 07:21
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
hello marsupilami,
Sorry, item 3 is not a problem, but I did not specify the client code page. Thank you for helping me solve the problem.3. When the data has non-English characters (such as Chinese), it will be wrong to save to the temporary table.
- 30.12.2021, 05:53
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
Merry Christmas to everyone! test has the following problems: 1. There is a problem with the SQL statement without a table, such as ‘select getdate()’. Debugging to unit ZSybaseAnalyser.pas: TZSybaseStatementAnalyser.DefineSelectSchemaFromQuery error. 2. Using temporary tables under SQL 2000 will ca...
- 29.12.2021, 11:46
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
- 27.12.2021, 09:04
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
Hello
Can the problem be solved?
Can the problem be solved?
- 23.12.2021, 12:46
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: The ZDetectUTF8Encoding of the ZEncoding unit has a bug
- Replies: 0
- Views: 496
The ZDetectUTF8Encoding of the ZEncoding unit has a bug
The ZDetectUTF8Encoding of the ZEncoding unit has a bug. SizeOf(PCardinal) should be changed to SizeOf(Cardinal) function ZDetectUTF8Encoding(Source: PAnsiChar; Len: NativeUInt): TEncodeType; var c: Byte; EndPtr: PAnsichar; begin Result := etUSASCII; if (Source = nil) or (Len = 0) then Exit; EndPtr ...
- 20.12.2021, 12:59
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
hello
I forgot to upload, I am uploading now.
I forgot to upload, I am uploading now.
- 19.12.2021, 03:23
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
hello
I made a test example, you can test it, the database is ms sql server.
I made a test example, you can test it, the database is ms sql server.
- 18.12.2021, 14:39
- Forum: MS SQL Server
- Topic: TZQuery opens a temporary table, all fields are read-only?
- Replies: 29
- Views: 2360
Re: TZQuery opens a temporary table, all fields are read-only?
The database I use is MS SQL Server, and the temporary table created is in the database tempdb, from which the metadata of the table can be obtained.