Question

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.

Was it helpful?

Solution

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
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top