Josh
Josh
The correct script is ``` DECLARE @OrderID int = 0 -- Declare a custom error if the specified order doesn't exist DECLARE @error VARCHAR(30) = 'Order #' + cast(@OrderID as...
The original query was ``` DECLARE @___ datetime = GETDATE(); DECLARE @___ datetime = DATEADD(dd, 7, GETDATE()); DECLARE @___ int = 1; INSERT INTO SalesLT.SalesOrderHeader (OrderDate, ___, ___, ShipMethod) VALUES...
In your second Insert you have the line `('Bicycle Horn', 'BH-PARP', 1.29, 3.75, IDENT_CURRENT('SalesLT.ProductCategory'), GETDATE());` Which should be `('Bicycle Horn', 'BB-PARP', 1.29, 3.75, IDENT_CURRENT('SalesLT.ProductCategory'), GETDATE());`
I receive the following exception when using the example smsMessenger code: > Unhandled Exception: > > Android.Content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SENDTO dat=smsto:xxxxxxxxxxxxxxx flg=0x10000000 (has extras) }...