My team is interested in using PetaPoco for one our projects however since the DBMS is Sybase we would want to know if PetaPoco supports it.

If it does, any example of how the connection string would look like will be very much appreciated.

Thank you.

有帮助吗?

解决方案

No, PetaPoco does not support Sybase.

You could find that information in the PetaPoco documentation:

Works with SQL Server, SQL Server CE, MySQL, PostgreSQL and Oracle.

... or in the source code:

enum DBType
{
    SqlServer,
    SqlServerCE,
    MySql,
    PostgreSQL,
    Oracle,
    SQLite
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top