Hello Craig,
The most important properties of SQLDataSource web part that you will need to use are ConnectionString and QueryText.
The ConnectionString property specify the connection string for database connection. If both server name and connection string are empty, application connection string is used by default.
The QueryText property defines the text of the query which will provide the data.
If you need to mode information about this web part I would like to point you to the following section of WebParts documentation:
http://devnet.kentico.com/docs/5_5R2/webparts/KenticoCMS_WebParts.htm#_2fb2ba51-e7ae-4277-8d98-8d1c886659e8Each viewer web part (Repeater, BasicRepeater, Datalist etc ) has property called Data source name in which you can specify the data source web part which provides data displayed by the viewer web part.
So you can bind one SQLDataSource web part to more repeaters by setting their Data source name property. However, repeaters will display the same content. So if you want repeaters to display different data, you need to associate each repeater with different SQLDataSource with different sql query.
You can also find some useful information about using datasource web parts in following section of Developer's guide:
http://devnet.kentico.com/docs/5_5r2/devguide/index.html?using_datasource_web_parts.htmBest Regards,
Edward Hillard