我正在创建ac#winform,我需要连接一个已经存在的sql数据库,基本上我需要注册用户才能使用用户名和密码登录该程序。.但是我在数据库上遇到了问题连接,我猜有一个运行时错误“连接属性尚未初始化!”
我使用了相同的连接字符串,并且登录表单已成功连接。
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
_categoryModel = [[CategoryModel alloc] initWithCategoryName:self.titleee[indexPath.row]];
_dataIndex = indexPath.row;
self.data = self.titleee[indexPath.row];
NSLog(@"Data: %@",self.data);
[self passDataDorward];
}
-(void)passDataDorward{
CategoryItemViewController *categoryVC = [[CategoryItemViewController alloc] init];
categoryVC.dataText = self.titleee[_dataIndex];
}
错误消息
“连接属性尚未初始化!”
答案 0 :(得分:1)
您必须设置SqlCommand对象的连接属性。
myCommand.Connection = myConnection;