[fpc-pascal] RGB32 video

2012-04-17 Thread Jorge Aldo G. de F. Junior
how to generate a RGB32 video to be consumed by, lets say ffmpeg ? i want to programatically generate video in some know format and rgb32 seems like the most simple to write is there any other way to easily generate video ? ___ fpc-pascal maillist -

Re: [fpc-pascal] Resolving a local hostnames to an IP address

2012-04-17 Thread Mark Morgan Lloyd
waldo kitty wrote: [...] not sure about that on windows... i just did a search in this w2k box... because it is different than my previous w98 box... the hosts file is found in %systemdir%/drivers/etc where on w98 it was found in %systemdir%... there is no resolv* found anywhere in my OS

RE : [fpc-pascal] Resolving a local hostnames to an IP address

2012-04-17 Thread Ludo Brands
Bear in mind that files of that type are very much optional on Windows, a sop to those who demanded them in order to implement things like innd so they could claim it was as good as Unix. My experience is that the nameserver addresses are available from the Windows registry if

Re: RE : [fpc-pascal] Resolving a local hostnames to an IP address

2012-04-17 Thread Mark Morgan Lloyd
Ludo Brands wrote: Bear in mind that files of that type are very much optional on Windows, a sop to those who demanded them in order to implement things like innd so they could claim it was as good as Unix. My experience is that the nameserver addresses are available from the Windows

[fpc-pascal] SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread Reinier Olislagers
In sqldb, this: type TSchemaType = (stNoSchema, stTables, stSysTables, stProcedures, stColumns, stProcedureParams, stIndexes, stPackages); is used in the GetSchemaInfoSQL function: I noticed stIndexes, stProcedureParams and stPackages do not seem to be used in the current sqldb connectors in

Re: [fpc-pascal] SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread michael . vancanneyt
On Tue, 17 Apr 2012, Reinier Olislagers wrote: In sqldb, this: type TSchemaType = (stNoSchema, stTables, stSysTables, stProcedures, stColumns, stProcedureParams, stIndexes, stPackages); is used in the GetSchemaInfoSQL function: I noticed stIndexes, stProcedureParams and stPackages do not

Re: [fpc-pascal] Re: SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread michael . vancanneyt
On Tue, 17 Apr 2012, Reinier Olislagers wrote: On 17-4-2012 10:36, Reinier Olislagers wrote: In sqldb, this: type TSchemaType = (stNoSchema, stTables, stSysTables, stProcedures, stColumns, stProcedureParams, stIndexes, stPackages); is used in the GetSchemaInfoSQL function: I noticed

Re: [fpc-pascal] SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread LacaK
type TSchemaType = (stNoSchema, stTables, stSysTables, stProcedures, stColumns, stProcedureParams, stIndexes, stPackages); is used in the GetSchemaInfoSQL function: Does anybody know what stIndexes, stProcedureParams and stPackages should return and when they would be used? stIndexes: get a

Re: [fpc-pascal] SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread LacaK
Thanks Michael. Function signature is GetSchemaInfoSQL(SchemaType : TSchemaType; SchemaObjectName, SchemaPattern : string) : string; ... assuming SchemaObjectName would be used similar to the existing code and would specify table name (stIndexes)/stored proc name (stProcedureParams)? See

Re: [fpc-pascal] Re: SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread LacaK
Does it perhaps follow ODBC conventions or something? or SQL-Standard INFORMATION_SCHEMA views ;-) L. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Re: SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread Reinier Olislagers
On 17-4-2012 13:33, LacaK wrote: Does it perhaps follow ODBC conventions or something? or SQL-Standard INFORMATION_SCHEMA views ;-) While I know that standard exists - I can tell without looking it up that the integer table_type column we're using is a vendor specific extra - that's how

[fpc-pascal] Re: SQLDB GetSchemaInfoSQL for indexes etc?

2012-04-17 Thread Reinier Olislagers
On 17-4-2012 12:58, LacaK wrote: ... assuming SchemaObjectName would be used similar to the existing code and would specify table name (stIndexes)/stored proc name (stProcedureParams)? See http://docwiki.embarcadero.com/VCL/XE2/en/SqlExpr.TCustomSQLDataSet.SetSchemaInfo Thanks Laco, very