I am getting this error when I try to delete rows from my database. I realize why I am getting this error from this link: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.sqlanywhere.12.0.1/saerrors/errm198.html How can I get around this? I am working in C#. |
Alright sorry I think I figured out the problem. When creating the table, I was setting it to "on delete restrict." I changed it to "on delete cascade" and it now works. |